在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。