System.StringNormalizationExtensions.IsNormalized C# (CSharp) Method

IsNormalized() public static method

public static IsNormalized ( this strInput ) : bool
strInput this
return bool
        public static bool IsNormalized(this string strInput)
        {
            return IsNormalized(strInput, NormalizationForm.FormC);
        }

Same methods

StringNormalizationExtensions::IsNormalized ( this strInput, NormalizationForm normalizationForm ) : bool
StringNormalizationExtensions