-optioninfer
可讓您在變數宣告中使用區域類型推斷。
語法
-optioninfer[+ | -]
引數
詞彙 | 定義 |
---|---|
+ | - |
選擇性。 指定 -optioninfer+ 以啟用區域類型推斷,或是指定 -optioninfer- 以封鎖它。 未指定值的 -optioninfer 選項與 -optioninfer+ 相同。 不存在 -optioninfer 參數時的預設值也是 -optioninfer+ 。 預設值是在 Vbc.rsp 回應檔中設定。 |
注意
您可以使用 -noconfig
選項來保留編譯器的內部預設值而不是 vbc.rsp 中所指定的預設值。 這個選項的編譯器預設值是 -optioninfer-
。
備註
如果原始程式碼檔包含 Option Infer 陳述式,該陳述式會覆寫 -optioninfer
命令列編譯器設定。
在 Visual Studio IDE 設定 -optioninfer
在 [方案總管] 中選取專案。 按一下 [專案] 功能表上的 [屬性]。
在 [編譯] 索引標籤上,修改 [Option infer] 方塊中的值。
範例
下列程式碼會在已啟用區域類型推斷下編譯 test.vb
。
vbc -optioninfer+ test.vb