编译器错误 C3266

“class”:类-构造函数必须具有“void”参数列表

使用 /clr 编程的类中的类构造函数不能接受参数。

下面的示例生成 C3266:

// C3266.cpp
// compile with: /clr

ref class X {
   static X(int i) { // C3266
   // try the following line instead
   // static X() {
   }
};

int main() {
}