M
Maxim
Hi, All!
How do I get unmanaged exception type in the catch block. Here's the piece
of code to clarify my question.
try
{
throw int(1);
}
catch(Exception^ ex)
{
.............
}
How do I get the type (int) and the value (1) of the exception thrown?
Thanks in advance
How do I get unmanaged exception type in the catch block. Here's the piece
of code to clarify my question.
try
{
throw int(1);
}
catch(Exception^ ex)
{
.............
}
How do I get the type (int) and the value (1) of the exception thrown?
Thanks in advance