比方說,我有一個文本框和一個按鈕,我怎樣才能使該按鈕轉換爲沒有結果(或沒有輸入文本框)結果0?如何使 - 如果沒有結果,結果= 0 C#
private void button1_Click(object sender, EventArgs e)
{
if (this.dateTimePicker1.Text != "")
{
listBox1.Items.Add(this.dateTimePicker1.Text);
}
textBox2.Text += " Woman";
if (this.textBox2.Text != "")
{
listBox1.Items.Add(this.textBox2.Text);
}
textBox3.Text += " People";
if (this.textBox3.Text != "")
{
listBox1.Items.Add(this.textBox3.Text);
}
}
如果沒有什麼在TextBox2中或textBox3進入其轉換結果爲「女人」或「人」,但我希望它是「0女人」 &「0人」 - 如果沒有在文本框中輸入。 任何人都可以幫我嗎?