BridgeStack.StringHelpers.NullOrEmpty C# (CSharp) Метод

NullOrEmpty() публичный статический Метод

Indicates whether the specified string is null or a System.String.Empty string.
public static NullOrEmpty ( this text ) : bool
text this The string to test.
Результат bool
        public static bool NullOrEmpty(this string text)
        {
            return string.IsNullOrEmpty(text);
        }