| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- // CompareOptions.cs
- //
- // This code was automatically generated from
- // ECMA CLI XML Library Specification.
- // Generator: libgen.xsl [1.0; (C) Sergey Chaban ([email protected])]
- // Created: Wed, 5 Sep 2001 06:34:52 UTC
- // Source file: all.xml
- // URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- namespace System.Globalization {
- /// <summary>
- /// </summary>
- public enum CompareOptions {
- /// <summary>
- /// </summary>
- None = 0,
- /// <summary>
- /// </summary>
- IgnoreCase = 1,
- /// <summary>
- /// </summary>
- IgnoreNonSpace = 2,
- /// <summary>
- /// </summary>
- IgnoreSymbols = 4,
- /// <summary>
- /// </summary>
- IgnoreKanaType = 8,
- /// <summary>
- /// </summary>
- IgnoreWidth = 16,
- /// <summary>
- /// </summary>
- StringSort = 536870912,
- /// <summary>
- /// </summary>
- Ordinal = 1073741824,
- } // CompareOptions
- } // System.Globalization
|