BcsResolver.Extensions.TextExtensions.IsEmptyOrWhitespace C# (CSharp) Method

IsEmptyOrWhitespace() public static method

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