BudgetAnalyser.Engine.StringExtension.IsNothing C# (CSharp) Метод

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

Returns true if the string is null, whitespace or empty. Equivelant to IsNullOrWhiteSpace
public static IsNothing ( this instance ) : bool
instance this
Результат bool
        public static bool IsNothing(this string instance)
        {
            return string.IsNullOrWhiteSpace(instance);
        }