Application runs very slow in debug mode

Viewed 5957

My C# program should execute an asynchronous task 30 times per second.

The program performs well as a standalone windows application.

But when it runs in debug mode in Visual Studio 2013 Professional environment the perfomance is very poor - just 5 tasks per second, even if there're no breakpoints in the code whatsoever.

Is slow debugging a "feature" of the VS.Net 2013 and is there a way to debug time critical C# apps?

4 Answers
Related