编译器警告(等级 3)C4357
委托“del”(生成“function”时被忽略)的形参表中的 param 数组参数
ParamArray
属性被忽略,并且不能使用变量参数调用 function
。
以下示例生成 C4357:
// C4357.cpp
// compile with: /clr /W3 /c
using namespace System;
public delegate void f(int i, ... array<Object^>^ varargs); // C4357
public delegate void g(int i, array<Object^>^ varargs); // OK