BinaryStudio.ClientManager.DomainModel.Infrastructure.StringExtensions.IsNullOrEmpty C# (CSharp) Method

IsNullOrEmpty() public static method

Check if string is empty, or is null or is only spaces in it.
public static IsNullOrEmpty ( this line ) : bool
line this
return bool
        public static bool IsNullOrEmpty(this string line)
        {
            return String.IsNullOrWhiteSpace(line);
        }