Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Visual Studio 2010 中 C# 编程的新手。我一直试图弄清楚当我单击保存按钮时,我的文本框不能为空或为空。如果你们能让我找到解决这个问题的方法,我将不胜感激。
您需要测试文本框(.Text属性)的值以查看是否已填充。
.Text
在语句中使用string.IsNullOrWhitespace(.NET 4.0 及更高版本)或string.IsNullOrEmpty方法if是一个好的开始。
string.IsNullOrWhitespace
string.IsNullOrEmpty
if
if(!string.IsNullOrWhitespace(aTextBox.Text)) { // it is not empty or null! }