溫馨提示×

C#中的isnullorempty怎么使用

c#
小億
125
2024-01-09 17:50:56
欄目: 編程語言

在C#中,IsNullOrEmpty是一個靜態(tài)方法,用于判斷一個字符串是否為null或者空字符串。使用時(shí),直接通過字符串類型調(diào)用該方法即可。以下是使用示例:

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");
}

輸出結(jié)果為:

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

以上示例中,IsNullOrEmpty方法分別判斷了str1、str2str3是否為null或空字符串,并根據(jù)判斷結(jié)果輸出相應(yīng)的信息。

0