首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > .NET Framework >

C# winform应用程序错误

2012-03-30 
C#winform应用程序异常C#开发的winform程序(C#调用C++的一个dll),framework为2.0.50727.3053,运行到执行C+

C# winform应用程序异常
C#开发的winform程序(C#调用C++的一个dll),framework为2.0.50727.3053,运行到执行C++里一个方法时winform程序自动关闭无法捕捉异常,
看系统的事件日志:执行引擎错误
.NET Runtime version 2.0.50727.3053 - Fatal Execution Engine Error (7A097706) (80131506)


[解决办法]
很有可能是C++ dll中越界访问内存了。

找到下面的资料
This is an exception generated by the CLR when it detects that the garbage collected heap is corrupted. The most typical source of this kind of corruption is unmanaged code writing to, say, a managed array and overflowing the array boundary.

If you have no idea what unmanaged code might be doing this then you're in for a pretty rough ride debugging this. Fwiw, virus scanners are pretty notorious for this, especially products from Symantec.


来自
http://stackoverflow.com/questions/2209197/fatal-execution-engine-error-7a09770680131506
[解决办法]
问题在于“C++的一个dll”,尝试对此dll进行调式
[解决办法]
用專業調試器去調試,,,例如ILSpy_Master
[解决办法]
也许C#调用时传了非法地址进去DLL里面。
[解决办法]
指针转成对象时,需要
使用 ref 和 Marshal 申请空间
[解决办法]
转换C++的函数写正确了没
[解决办法]
把你的C++头文件里的函数声明贴出来看看吧。应该是C#声明与C++不匹配

热点排行