Comment : Exceptions de Catch dans le code natif levée du code MSIL
En code natif, vous pouvez intercepter l'exception C++ native en langage MSIL.Vous pouvez intercepter des exceptions CLR avec __try et __except.
Pour plus d'informations, consultez Gestion structurée des exceptions (C++) et Gestion des exceptions C++.
Exemple
L'exemple suivant définit un module avec deux fonctions, une qui lèvent une exception native, et une autre qui lèvent une exception MSIL.
// catch_MSIL_in_native.cpp
// compile with: /clr /c
void Test() {
throw ("error");
}
void Test2() {
throw (gcnew System::Exception("error2"));
}
L'exemple suivant définit un module qui intercepte un natif et l'exception MSIL.
// catch_MSIL_in_native_2.cpp
// compile with: /clr catch_MSIL_in_native.obj
#include <iostream>
using namespace std;
void Test();
void Test2();
void Func() {
// catch any exception from MSIL
// should not catch Visual C++ exceptions like this
// runtime may not destroy the object thrown
__try {
Test2();
}
__except(1) {
cout << "caught an exception" << endl;
}
}
int main() {
// catch native C++ exception from MSIL
try {
Test();
}
catch(char * S) {
cout << S << endl;
}
Func();
}