CompilationSection.Strict 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定 Visual Basic strict
編譯選項。
public:
property bool Strict { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("strict", DefaultValue=false)]
public bool Strict { get; set; }
[<System.Configuration.ConfigurationProperty("strict", DefaultValue=false)>]
member this.Strict : bool with get, set
Public Property Strict As Boolean
屬性值
如果使用 Visual Basic true
編譯選項,則為 strict
,否則為 false
。 預設為 true
。
- 屬性
範例
下列程式碼範例示範如何使用 Strict 屬性。 此程式碼範例是提供給 類別之較大範例的 CompilationSection 一部分。
// Display Strict property.
Console.WriteLine("Strict: {0}",
configSection.Strict);
// Set Strict property.
configSection.Strict = false;
' Display Strict property.
Console.WriteLine("Strict: {0}", _
configSection.Strict)
' Set Strict property.
configSection.Strict = False
備註
當 為 時 true
,編譯會明確不允許發生資料遺失的任何資料類型轉換,以及數數值型別和字串之間的任何轉換。