How is it possible to get the Exception Error as a string in the catch event ?
The thing is that I get an exception and now want to know what the problem is and what the exception is saying.
try
{
//some code
}
catch(Exception ex)
{
//How to display this Exception as a string in MessageBox::Show(); ?
}