c#

c# string怎样判断是否为空

小樊
88
2024-10-18 18:31:28
栏目: 编程语言

在C#中,要判断一个字符串是否为空,可以使用以下方法:

string str = "your string here";

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

string.IsNullOrEmpty(str)方法会检查字符串str是否为null或者为空字符串(即长度为0)。如果满足这些条件之一,该方法将返回true,否则返回false。

0
看了该问题的人还看了