Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
param array argument in formal argument list for delegate 'del' ignored when generating 'function'
Remarks
The ParamArray attribute was ignored, and function cannot be called with variable arguments.
Example
The following example generates 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