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

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

Returns true if the string is not null, not whitespace, and not empty. The direct opporsite of IsNothing
public static IsSomething ( this instance ) : bool
instance this
Результат bool
        public static bool IsSomething(this string instance)
        {
            return !string.IsNullOrWhiteSpace(instance);
        }