我正在使用以下代码检查空文本框,如果为空,则跳过复制到剪贴板并继续执行其余代码。
我不明白为什么会出现“值不能为 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;
}