string.IsNullOrEmpty和string.IsNullOrWhiteSpace 方法的区别
作者:互联网
string.IsNullOrEmpty和string.IsNullOrWhiteSpace 方法的区别
这两个方法在大部分情况下判断的结果是一致的,但相比于string.IsNullOrEmpty方法string.IsNullOrWhiteSpace方法还会对空白字符进行判断,例如一个字符串全是空格等空白字符的情况,在string.IsNullOrEmpty的判断下为false,string.IsNullOrWhiteSpace方法判断则为true。
标签:字符,判断,string,IsNullOrWhiteSpace,IsNullOrEmpty,方法 来源: https://blog.csdn.net/m0_46454966/article/details/118281173