Debug mode and release mode difference for an application in visual studio. What happens internally? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Debug mode and release mode difference for an application in visual studio. What happens internally?

Debug mode and release mode difference for an application in visual studio. I don't find clear picture what happens internally when we build an application using debug mode and release mode. what are the uses? why?

8th Nov 2017, 9:30 AM
anu
anu - avatar
1 Answer
+ 3
Difference between a Debug and Release build. Debug mode and Release mode are different configurations for building your .Net project. Programmers generally use the Debug mode for debugging step by step their .Net project and select the Release mode for the final build of Assembly file (.dll or .exe). Read this for more:- https://stackoverflow.com/questions/5338733/what-is-the-difference-between-debug-mode-and-release-mode-in-visual-studio-2010
8th Nov 2017, 9:35 AM
Harsh
Harsh - avatar