Errore del compilatore C3154
Previsto ',' prima dei puntini di sospensione. I puntini di sospensione non delimitati da virgole non sono supportati nelle funzioni della matrice di parametri.
Una funzione di argomento variabile non è stata dichiarata correttamente.
Per altre informazioni, vedere Elenchi di argomenti variabili (...) (C++/CLI).
Esempio
L'esempio seguente genera l'errore C3154.
// C3154.cpp
// compile with: /clr
ref struct R {
void Func(int ... array<int> ^); // C3154
void Func2(int i, ... array<int> ^){} // OK
void Func3(array<int> ^){} // OK
void Func4(... array<int> ^){} // OK
};
int main() {
R ^ r = gcnew R;
r->Func4(1,2,3);
}