📜  C#字符串IsNullOrWhiteSpace()方法

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

C#字符串IsNullOrWhiteSpace()

C#IsNullOrWhiteSpace()方法用于检查指定的字符串是否为null或仅由空格字符。它返回布尔值True或False。

签名

public static bool IsNullOrWhiteSpace(String str)

参数

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

返回

它返回布尔值。

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

using System; 
    public class StringExample  
     {  
        public static void Main(string[] args) 
        {  
           string s1 = "Hello C#";
           string s2 = "";
           string s3 = " ";
           bool b1 = string.IsNullOrWhiteSpace(s1);
           bool b2 = string.IsNullOrWhiteSpace(s2);
           bool b3 = string.IsNullOrWhiteSpace(s3);
           Console.WriteLine(b1);        // returns False 
           Console.WriteLine(b2);        // returns True 
           Console.WriteLine(b3);        // returns True 
       }  
    }  

输出:

False
True
True