|
|
#10 |
|
Участник
|
Если метода AifUtil::getClrErrorMessage() не найдется, то тогда так
X++: System.Exception exception;
...
catch (Exception::CLRError)
{
exception = CLRInterop::getLastException();
while (exception)
{
error(exception.get_Message());
exception = exception.get_InnerException();
}
return false; |
|
|