BudgetAnalyser.Engine.StringExtension.IsSomething C# (CSharp) Method

IsSomething() public static method

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
return bool
        public static bool IsSomething(this string instance)
        {
            return !string.IsNullOrWhiteSpace(instance);
        }