Debugging dump files in Visual Studio
I am using Visual Studio 2010 Professional Edition, and Windows Vista. Firstly, I have this code. As you can see, it will crash the program! using System; namespace Crash { class Program { static void Main(string[] args) { string a = null; if (a.Length == 12) { // ^^ Crash } } } } The program will crash on the if statement. Now, I want to find out that it crashed on that if statement. If I "Start without Debugging" from Visual Studio, Crash.exe crashes. It uses 1,356kb of memory. I get the Vista option of Close Program/Debug. If I choose Debug, I can open a new instance of Visual Studio, and