📜  C#字符串IsNullOrEmpty()方法

📅  最后修改于: 2020-10-31 03:39:50             🧑  作者: Mango

C#字符串IsNullOrEmpty()

C#IsNullOrEmpty()方法用于检查指定的字符串是否为null或Empty 字符串。它返回布尔值true或false。

签名

public static bool IsNullOrEmpty(String str)

参数

str:它是一个字符串参数,用于检查字符串。

返回

它返回布尔值。

C#字符串IsNullOrEmpty()方法示例

    using System; 
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
           string s1 = "Hello C#";
           string s2 = "";
           bool b1 = string.IsNullOrEmpty(s1);
           bool b2 = string.IsNullOrEmpty(s2);
           Console.WriteLine(b1);
           Console.WriteLine(b2);
         }  
    }  

输出:

False
True