共用方式為


編譯器錯誤 CS2019

更新:2007 年 11 月

錯誤訊息

/target 的無效目標型別: 必須指定 'exe'、'winexe'、'library' 或 'module'

使用 /target 編譯器選項,卻傳遞了無效的參數。若要解決這個錯誤,重新編譯使用適合輸出檔的 /target 選項格式的程式。

下列範例會產生 CS2017:

// CS2019.cs
// compile with: /target:libra
// CS2019 expected
class MyClass
{
}