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