使用英语阅读

通过


编译器错误 CS2019

/target 的目标类型无效: 必须指定“exe”、“winexe”、“library”或“module”

/TargetType 编译器选项已使用,但传递的是无效参数。 若要解决此错误,请使用适合输出文件的 /target 选项的形式重新编译程序。

以下示例生成 CS2017:

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