Tags: Debugging

Object reference not set to an instance of an object

Debugging Benjamin Perkins

Just documenting something I did today.  I was receiving the error shown in Figure 1. “??? has encountered an unexpected error:  The requested action could not be completed.  Details:  Object reference not set to an instances of an object.” Figure 1, Object reference not set to an instances of an object exception I needed to […]

Read More →

Capture a StackOverflowException and make a dump 0xc00000fd

WinDbg Benjamin Perkins

I read in this article that “Starting with the .NET Framework 2.0, you can’t catch a StackOverflowException object with a try/catch block, and the corresponding process is terminated by default. Consequently, you should write your code to detect and prevent a stack overflow.”  That is the reason why the following code was crashing my process […]

Read More →