C#中的isnullorempty怎么使用

c#
615
2023/12/27 17:50:56
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C#中,IsNullOrEmpty是一个静态方法,用于判断一个字符串是否为null或者空字符串。使用时,直接通过字符串类型调用该方法即可。以下是使用示例:

string str1 = null;
string str2 = "";
string str3 = "Hello World";

if (string.IsNullOrEmpty(str1))
{
    Console.WriteLine("str1 is null or empty");
}
else
{
    Console.WriteLine("str1 is not null or empty");
}

if (string.IsNullOrEmpty(str2))
{
    Console.WriteLine("str2 is null or empty");
}
else
{
    Console.WriteLine("str2 is not null or empty");
}

if (string.IsNullOrEmpty(str3))
{
    Console.WriteLine("str3 is null or empty");
}
else
{
    Console.WriteLine("str3 is not null or empty");
}

输出结果为:

str1 is null or empty
str2 is null or empty
str3 is not null or empty

以上示例中,IsNullOrEmpty方法分别判断了str1str2str3是否为null或空字符串,并根据判断结果输出相应的信息。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: c#复选框控件能否自定义样式