CompilationSection.DefaultLanguage 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定在動態編譯檔案使用的預設程式設計語言。
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
屬性值
值,指定在動態編譯檔案使用的預設程式設計語言。
- 屬性
範例
下列程式碼範例示範如何使用 DefaultLanguage 屬性。 此程式碼範例是針對 類別提供的較大範例的 CompilationSection 一部分。
// 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"
備註
指定要在動態編譯檔案中使用的預設程式設計語言,例如 C# 或 VB.NET。 語言名稱是使用 區 system.codedom
段來定義。 預設程式設計語言為 vb
,它會指定 VB.NET 為預設程式設計語言。