gpt4 book ai didi

c# - 检查文本框文本是否为空

转载 作者:太空狗 更新时间:2023-10-30 00:11:14 25 4
gpt4 key购买 nike

我正在使用以下代码检查空文本框,如果它为空,则跳过复制到剪贴板并继续执行其余代码。

我不明白为什么会出现“值不能为 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;
}

最佳答案

您可能应该像这样进行检查:

if (textBox_Results != null && !string.IsNullOrWhiteSpace(textBox_Results.Text))

只是一个额外的检查,如果 textBox_Results 曾经是 null,您就不会得到 Null Reference Exception。

关于c# - 检查文本框文本是否为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14350223/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com