Errore del compilatore C3283
'type': un'interfaccia non può avere un costruttore di istanza
Un' interfaccia CLR non può avere un costruttore di istanze. È consentito un costruttore statico.
L'esempio seguente genera l'errore C3283:
// C3283.cpp
// compile with: /clr
interface class I {
I(); // C3283
};
Possibile soluzione:
// C3283b.cpp
// compile with: /clr /c
interface class I {
static I(){}
};