class StringNormalizationExtensions
Provides extension methods to work with string normalization.
public static bool IsNormalized( string strInput )
Indicates whether the specified string is in Unicode normalization form C.
valueA string.- Returns if is in normalization form C; otherwise, .
public static bool IsNormalized( string strInput, NormalizationForm normalizationForm )
Indicates whether a string is in a specified Unicode normalization form.
valueA string.normalizationFormA Unicode normalization form.- Returns if is in normalization form ; otherwise, .
public static string Normalize( string strInput )
Normalizes a string to a Unicode normalization form C.
valueThe string to normalize.- Returns A new string whose textual value is the same as but whose binary representation is in Unicode normalization form C.
public static string Normalize( string strInput, NormalizationForm normalizationForm )
Normalizes a string to the specified Unicode normalization form.
valueThe string to normalize.normalizationFormThe Unicode normalization form.- Returns A new string whose textual value is the same as but whose binary representation is in the normalization form.
public Type GetType( )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.