Aqueduct.Helpers.StringExtensions.IsNotEmpty C# (CSharp) Method

IsNotEmpty() private method

private IsNotEmpty ( this str ) : bool
str this
return bool
        public static bool IsNotEmpty (this string str)
        {
            return !str.IsNullOrEmpty ();
        }