标签:处理 str try catch 异常处理 col 内存异常 dstat string seh
c#程序调用c++程序时候,如果底层出现内存异常 0xC0000005,如何捕获呢?
使用c#默认的try catch无法捕获,需要使用:
[HandleProcessCorruptedStateExceptions]//捕获c++异常 [SecurityCritical]//捕获c++异常 public void xxx() { try { } catch (System.AccessViolationException ex) //捕获cse类型的异常 { Console.WriteLine(" 0xC0000005 exception:" + ex.ToString()); } }
.net 4x 中,c# 默认情况下只处理SEH的异常。不处理CSE的异常。若你要捕获这类的异常。
你需要再对应的方法上面加上。同时编译dll时候要注意相关异常捕获参数设置。
标签:处理 str try catch 异常处理 col 内存异常 dstat string seh
原文地址:https://www.cnblogs.com/badprogrammer/p/9928368.html