This documentation is archived and is not being maintained.
LanguageOptions Enumeration
.NET Framework 1.1
Defines identifiers that indicate special features of a language.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Visual Basic] <Flags> <Serializable> Public Enum LanguageOptions [C#] [Flags] [Serializable] public enum LanguageOptions [C++] [Flags] [Serializable] __value public enum LanguageOptions [JScript] public Flags Serializable enum LanguageOptions
Remarks
A CodeDomProvider has a LanguageOptions property that is used to indicate certain characteristics of the programming language supported by the provider. The meaning of a LanguageOptions identifier can be relevant to properly generating, compiling, and reading the language.
Members
Member name | Description | Value |
---|---|---|
CaseInsensitive | The language is case-insensitive. | 1 |
None | The language has default characteristics. | 0 |
Requirements
Namespace: System.CodeDom.Compiler
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System (in System.dll)
See Also
Show: