Scorpio.Util.IsNullOrEmpty C# (CSharp) Method

IsNullOrEmpty() public static method

public static IsNullOrEmpty ( String str ) : bool
str String
return bool
        public static bool IsNullOrEmpty(String str)
        {
            return string.IsNullOrEmpty(str);
        }
        public static object ChangeType_impl(object value, Type conversionType)