共用方式為


編譯器警告 (層級 3) C4357

產生 'function' 時忽略委派 'del' 之正式引數清單中的 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