Freigeben über


Compilerfehler C2353

Ausnahmespezifikation ist nicht zulässig

Ausnahmespezifikationen sind für Memberfunktionen verwalteter Klassen nicht zulässig.

Im folgenden Beispiel wird C2353 generiert:

// C2353.cpp
// compile with: /clr /c
ref class X {
   void f() throw(int);   // C2353
   void f();   // OK
};