托管类型和 main 函数 (C++/CLI)

在使用 /clr 编写应用程序时,main() 函数的参数不能是托管类型。

正确签名的示例如下所示:

// managed_types_and_main.cpp
// compile with: /clr
int main(int, char*[], char*[]) {}

请参见

其他资源

托管类型 (C++/CLI)