'class' : a class-constructor must have a 'void' parameter list
Constructors in a class using Managed Extensions for C++ cannot take parameters. The following sample generates C3266:
#using <mscorlib.dll> __gc class X { static X(int i) { // C3266 } /* the following code resolves the error static X() { } */ }; void main() { }