AGENT.Contrib.Util.Strings.IsNullOrEmpty C# (CSharp) Method

IsNullOrEmpty() public static method

public static IsNullOrEmpty ( string input ) : bool
input string
return bool
        public static bool IsNullOrEmpty(string input)
        {
            return (input == null || input == "");
        }

Same methods

Strings::IsNullOrEmpty ( char input ) : bool