本文介绍了故障模块名称:PresentationFramework.ni.dll的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
应用程序我写了崩溃,在事件查看器中我发现以下内容:
An application i wrote crashes and in the event viewer i found the following :
几个问题:
- PresentationFramework.ni.dll是什么?
- 我如何知道这个异常是否是由于错误导致的我的申请或不相关的东西?
谢谢
推荐答案
PresentationFramework.ni.dll是PresentationFramework程序集的一个版本,WPF的一个关键组件。
PresentationFramework.ni.dll is the ngen-ed version of the PresentationFramework assembly, a key assembly for WPF.
异常代码0xc00000fd表示StackoverflowException。一个非常臭名昭着的例外,这个网站被命名,立即终止你的应用程序,很少看。它总是由编程错误引起的。您需要调试您的应用程序。
Exception code 0xc00000fd means StackoverflowException. A pretty notorious exception for which this site is named that instantly terminates your application with little to look at. It is always caused by a programming bug. You'll need to debug your app.
这篇关于故障模块名称:PresentationFramework.ni.dll的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!