Faulting module name: PresentationFramework.ni.dll

exception, windows, wpf

Solution

PresentationFramework.ni.dll is the ngen-ed version of the PresentationFramework assembly, a key assembly for WPF.

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.

Problem

An application i wrote crashes and in the event viewer i found the following : Faulting module name: PresentationFramework.ni.dll, version: 4.0.30319.233, time stamp: 0x4d930fa2 Exception code: 0xc00000fd couple of questions: - what is the PresentationFramework.ni.dll? - how can i know if this exception is caused by something wrong in my application or something unrelated? Thanks

Original source