System.StringNormalizationExtensions.IsNormalized C# (CSharp) Méthode

IsNormalized() public static méthode

public static IsNormalized ( this strInput, NormalizationForm normalizationForm ) : bool
strInput this
normalizationForm NormalizationForm
Résultat 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