C#:string判空1.  string.IsNullOrEmpty (str)
空字符串是什么.Net 2 可⽤,也就是 Unity 能⽤
str = “”    ---> true
str = “ ”  ---> false
str = null  ---> true
2. String.IsNullOrWhiteSpace(str)
namespace为:System.String
.Net 4 可⽤,也就是 Unity 不能⽤
本质上相当于:string.IsNullOrEmpty(value) || value.Trim().Length == 0;
str = ""    ---> true
str = "  "  ---> true
str = null  ---> true

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。