LanguageOptions.cs 284 B

123456789101112131415161718
  1. //
  2. // System.CodeDom.Compiler LanguageOptions Enum implementation
  3. //
  4. // Author:
  5. // Daniel Stodden ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc.
  8. //
  9. namespace System.CodeDom.Compiler
  10. {
  11. [Flags]
  12. [Serializable]
  13. public enum LanguageOptions {
  14. None = 0,
  15. CaseInsensitive = 1
  16. }
  17. }