When using .NET objects we should think of error handling also.
Previous way to catch CLRErrors looked like this:
…
catch (Exception::CLRError)
{
ex = ClrInterop::getLastException();
if...(read more)
↧