class StringNormalizationExtensions

in global :: System

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.

  • value A 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.

  • value A string.
  • normalizationForm A 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.

  • value The 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.

  • value The string to normalize.
  • normalizationForm The 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.