對不起,我一直試圖弄清楚這個問題一個多小時。我正在使用下面的代碼來檢查一個空的文本框,如果它爲空,則跳過複製到剪貼板並轉到代碼的其餘部分。檢查文本框爲NULL
我不明白爲什麼我得到「值不能爲NULL」的例外。它不應該看到null並繼續前進而不復制到剪貼板嗎?
private void button_Click(object sender, EventArgs e)
{
if (textBox_Results.Text != null) Clipboard.SetText(textBox_Results.Text);
//rest of the code goes here;
}
什麼平臺... Wpf?的WinForms? –