System.Web.Compilation.TemplateControlCompiler.InvariantCompareNoCase C# (CSharp) Method

InvariantCompareNoCase() static private method

static private InvariantCompareNoCase ( string a, string b ) : bool
a string
b string
return bool
		static bool InvariantCompareNoCase (string a, string b)
		{
			return (0 == String.Compare (a, b, true, Helpers.InvariantCulture));
		}
TemplateControlCompiler