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

EqualsIgnoreCase() private method

private EqualsIgnoreCase ( this str, string value ) : bool
str this
value string
return bool
        public static bool EqualsIgnoreCase(this string str, string value)
        {
            return str.Equals(value, System.StringComparison.CurrentCultureIgnoreCase);
        }
    }