Enum ComparisonFlags
C#
[Flags]
public enum ComparisonFlags
Fields
IgnoreCase | Specifies that the case of characters will be ignored when comparing string values. |
IgnoreCharacterWidth | Specifies that character width differences (full-width, half-width) will be ignored when comparing string values. |
IgnoreKanaType | Specifies that character kana differences (hiragana, katakana) will be ignored when comparing string values. |
IgnoreNonspacingCharacters | Specifies that non-spacing characters will be ignored when comparing string values. |
IgnoreSymbols | Specifies that symbols will be ignored when comparing string values. |
None | Specifies that no special comparison behaviors will be used. |
SortPunctuationAsSymbols | Specifies that the punctuation will be treated as punction for the purpose of sort ordering comparisons. |