opomba,
Dostop do te strani zahteva pooblastilo. Poskusite se vpisati alispremeniti imenike.
Dostop do te strani zahteva pooblastilo. Poskusite lahko spremeniti imenike.
'class' : generic class must be a managed or WinRTclass
Remarks
A generic class must be a managed class or a Windows Runtime class.
Example
The following example generates C3209 and shows how to fix it:
// C3209.cpp
// compile with: /clr
generic <class T>
class C {}; // C3209
// OK - ref class can be generic
generic <class T>
ref class D {};