Condividi tramite


Errore del compilatore C3268

'function': una funzione generica o una funzione membro di una classe generica non può avere un elenco di parametri di variabile

Osservazioni:

Le opzioni del compilatore /clr:pure e /clr:safe sono deprecate in Visual Studio 2015 e non supportate in Visual Studio 2017.

Per altre informazioni, vedere Generics .

Esempio

L'esempio seguente genera l'errore C3268.

// C3268.cpp
// compile with: /clr:pure /c
generic <class ItemType>
void Test(ItemType item, ...) {}   // C3268
// try the following line instead
// void Test(ItemType item) {}

generic <class ItemType2>
ref struct MyStruct { void Test(...){} };   // C3268
// try the following line instead
// ref struct MyStruct { void Test2(){} };   // OK