📅  最后修改于: 2020-10-31 03:40:50             🧑  作者: Mango
C#IsNullOrWhiteSpace()方法用于检查指定的字符串是否为null或仅由空格字符。它返回布尔值True或False。
public static bool IsNullOrWhiteSpace(String str)
str:它是一个字符串参数,用于检查字符串的空空白。
它返回布尔值。
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