Errore del compilatore C2749
'type': può generare o intercettare solo handle in una classe gestita con /clr:safe
Quando si usa /clr:safe, è possibile generare o intercettare solo un tipo di riferimento.
Per altre informazioni, vedere /clr (Compilazione Common Language Runtime).
Esempio
L'esempio seguente genera l'errore C2749:
// C2749.cpp
// compile with: /clr:safe
ref struct MyStruct {
public:
int i;
};
int main() {
MyStruct ^x = gcnew MyStruct;
// Delete the following 4 lines to resolve.
try {
throw (1); // C2749
}
catch(int){}
// OK
try {
throw (x);
}
catch(MyStruct ^){}
}