mscorlib(4.0.0.0) API with additions
CompareOptions.cs
2 
3 namespace System.Globalization
4 {
7  [Flags]
8  [ComVisible(true)]
9  [__DynamicallyInvokable]
10  public enum CompareOptions
11  {
13  [__DynamicallyInvokable]
14  None = 0x0,
16  [__DynamicallyInvokable]
17  IgnoreCase = 0x1,
19  [__DynamicallyInvokable]
20  IgnoreNonSpace = 0x2,
22  [__DynamicallyInvokable]
23  IgnoreSymbols = 0x4,
25  [__DynamicallyInvokable]
26  IgnoreKanaType = 0x8,
28  [__DynamicallyInvokable]
29  IgnoreWidth = 0x10,
31  [__DynamicallyInvokable]
32  OrdinalIgnoreCase = 0x10000000,
34  [__DynamicallyInvokable]
35  StringSort = 0x20000000,
37  [__DynamicallyInvokable]
38  Ordinal = 0x40000000
39  }
40 }
Indicates that the string comparison must ignore the Kana type. Kana type refers to Japanese hiragana...
Definition: __Canon.cs:3
Indicates that the string comparison must ignore case.
Compare strings using ordinal (binary) sort rules and ignoring the case of the strings being compared...
Indicates that the string comparison must ignore the character width. For example,...
Indicates that the string comparison must ignore nonspacing combining characters, such as diacritics....
Compare strings using ordinal (binary) sort rules.
Indicates that the string comparison must use the string sort algorithm. In a string sort,...
Specifies that the class can be serialized.
Indicates that the string comparison must ignore symbols, such as white-space characters,...
CompareOptions
Defines the string comparison options to use with T:System.Globalization.CompareInfo.