Click here to Skip to main content
15,889,732 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is release mode build has more speed than Debug mode build ?
Posted

Usually, yes. However, depennding on the scenario could be more or less significant. See, for instance "C#: Debug vs. Release performance"[^].
 
Share this answer
 
To add to what Carlo says, time it and see!
The Diagnostics namespace includes the Stopwatch class[^], which is designed for timing how long your code takes.

It's worth executing the same code a couple of thousand times to get rid of external factors such as other tasks and apps causing yours to be suspended.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900