Why is Debug mode slower than Release in VS?

I already have Googled, and usually the answers are pretty complicated, and I don't understand all the jargon. Is there a simple explanation why Debug mode is so slow? Why not just run in Release?

+5
source share
1 answer

In debug mode, all optimizations are disabled to ensure that the connected debugger is working properly. Release will include many optimizations.

Easier than that I can not say.

+7
source

All Articles