Compiler Warning (level 1) C4572
Visual Studio 2005
Error Message
[ParamArray] attribute is deprecated under /clr, use '...' insteadAn obsolete style for specifying a variable argument list was used. When compiling for the CLR, use ellipsis syntax instead of ParamArrayAttribute. For more information, see How to: Accept Variable Arguments.
Example
The following sample generates C4572.
// C4572.cpp
// compile with: /clr /W1
void Func([System::ParamArray] array<int> ^); // C4572
void Func2(... array<int> ^){} // OK
int main() {
Func2(1, 2, 3);
}