System.StringNormalizationExtensions.IsNormalized C# (CSharp) Method

IsNormalized() public static method

public static IsNormalized ( this strInput, NormalizationForm normalizationForm ) : bool
strInput this
normalizationForm NormalizationForm
return bool
        public static bool IsNormalized(this string strInput, NormalizationForm normalizationForm)
        {
            if (strInput == null)
            {
                throw new ArgumentNullException(nameof(strInput));
            }

            return strInput.IsNormalized(normalizationForm);
        }

Same methods

StringNormalizationExtensions::IsNormalized ( this strInput ) : bool
StringNormalizationExtensions