ObjUnity3D.StringExt.IsNullOrEmpty C# (CSharp) Method

IsNullOrEmpty() public static method

public static IsNullOrEmpty ( this str ) : bool
str this
return bool
        public static bool IsNullOrEmpty(this string str)
        {
            return string.IsNullOrEmpty(str);
        }