| 123456789101112131415161718 |
- //
- // System.CodeDom.Compiler LanguageOptions Enum implementation
- //
- // Author:
- // Daniel Stodden ([email protected])
- //
- // (C) 2002 Ximian, Inc.
- //
- namespace System.CodeDom.Compiler
- {
- [Flags]
- [Serializable]
- public enum LanguageOptions {
- None = 0,
- CaseInsensitive = 1
- }
- }
|