Reputation: 771
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:
Thanks
Upvotes: 5
Views: 4265
Reputation: 942538
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.
Upvotes: 6
Reputation: 63295
That assembly is part of .NET Framework. Your need to know the exception stack trace. You might try to capture a crash dump and analyze.
Upvotes: 3