在C#中,使用string.IsNullOrEmpty方法可以判斷一個字符串是否為null或者為空字符串。示例如下:
string myString = "Hello World";
if (string.IsNullOrEmpty(myString))
{
Console.WriteLine("String is null or empty");
}
else
{
Console.WriteLine("String is not null or empty");
}
在上面的示例中,如果myString為空或者為null,則會輸出"String is null or empty";否則會輸出"String is not null or empty"。