Post Made Community Wiki by Community
show/hide this revision's text 2 clarification

To avoid large delays when you run a large WinForms program in the debugger, close all Visual Forms Designer tabs, quit Visual Studio, then run VS again and load your project. Loading the Designer at all (even if you close it again) can cause these weird large delays when your program runs in the debugger.

Has anyone else experienced this?

How I found this out: I have a rather large C# WinForms solution with dozens of projects that used to take forever to run when I hit F5---even if I made only small changes and recompiled. Initially I thought it was due to the size of the solution, but later noticed that the compilation was finishing quickly, but there was a still delay before the main form would load. Later I found the same strange delay on another, new, smaller project and realized what I had in common: the Designer. Now I do all my design work in batches, and then close any Designer windows, quit VS, re-launch VS, and go back to coding.

show/hide this revision's text 1

To avoid large delays when you run a large WinForms program in the debugger, close all Visual Forms Designer tabs, quit Visual Studio, then run VS again and load your project. Loading the Designer at all (even if you close it again) can cause these weird large delays when your program runs in the debugger.

Has anyone else experienced this?

How I found this out: I have a rather large C# WinForms solution with dozens of projects that used to take forever to run when I hit F5---even if I made only small changes and recompiled. Initially I thought it was due to the size of the solution, but later noticed that the compilation was finishing quickly, but there was a still delay before the main form would load. Later I found the same strange delay on another, new, smaller project and realized what I had in common: the Designer. Now I do all my design work in batches, and then close, quit, and go back to coding.