编译器警告(等级 1)C4829

函数 main 的参数可能不正确。 考虑使用 'intmain(Platform::Array<Platform::String^>^ argv)'

某些函数(如 main)不能采用引用类型参数。 虽然编译会成功,但是生成的图像可能不会运行。

以下示例生成 C4829:

// C4829.cpp
// compile by using: cl /EHsc /ZW /W4 /c C4829.cpp
int main(Platform::String ^ s) {}   // C4829