Bytes2you.Validation.Helpers.StringHelper.IsEmpty C# (CSharp) Method

IsEmpty() public static method

public static IsEmpty ( string value ) : bool
value string
return bool
        public static bool IsEmpty(string value)
        {
            return value != null && value.Length == 0;
        }
    }