C# winform三种方法判断文本框textBox内容是否为空

C# winform三种方法判断文本框textBox内容是否为空

使用系统API函数,需要使用命名空间:System.Runtime.InteropServices;

1.if (textBoxPath.Text ==  String.Empty )

2.if (textBoxPath.Text == "" )

3.if (String.IsNullOrEmpty(textBoxPath.Text))

C# winform三种方法判断文本框textBox内容是否为空

上一篇:scrollIntoView 与 scrollIntoViewIfNeeded API 介绍


下一篇:利用CDH提供的API进行Hbase服务的状态检测及自动重启