CompilationSection.DefaultLanguage Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the default programming language to use in dynamic-compilation files.
public:
property System::String ^ DefaultLanguage { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("defaultLanguage", DefaultValue="vb")]
public string DefaultLanguage { get; set; }
[<System.Configuration.ConfigurationProperty("defaultLanguage", DefaultValue="vb")>]
member this.DefaultLanguage : string with get, set
Public Property DefaultLanguage As String
Property Value
A value specifying the default programming language to use in dynamic-compilation files.
- Attributes
Examples
The following code example demonstrates how to use the DefaultLanguage property. This code example is part of a larger example provided for the CompilationSection class.
// Display DefaultLanguage property.
Console.WriteLine("DefaultLanguage: {0}",
configSection.DefaultLanguage);
// Set DefaultLanguage property.
configSection.DefaultLanguage = "vb";
' Display DefaultLanguage property.
Console.WriteLine("DefaultLanguage: {0}", _
configSection.DefaultLanguage)
' Set DefaultLanguage property.
configSection.DefaultLanguage = "vb"
Remarks
Specifies the default programming language, such as C# or VB.NET, to use in dynamic compilation files. Language names are defined using the system.codedom
section. The default programming language is vb
, which specifies VB.NET as the default programming language.