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

IsNullOrEmpty() private method

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