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?
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.