Qus:    Differentiate between a Debug build and Release build?
Oct 13, 2020 13:54 DotNet 2 Answers Views: 1394 RAMU
Prev Next
Answers (2)
PADMAKEECHU Oct 14, 2020 06:56
Answer:   Debug builds do not optimize and allow accurate setting of breakpoints. They contain debugging symbols, but the code built-in "Release" mode is optimized for speed or size without any debug data.

PARTH Oct 14, 2020 14:14
Answer:   In a debug build the complete symbolic debug information is emitted to help while debugging applications and also the code optimization is not taken into account. While in release build the symbolic debug info is not emitted and the code execution is optimized.

Post Your Answer
Guest User

Not sure what solution is right for you?

Choose the right one for you.
Get the help of the experts and find a solution that best suits your needs.


Let`s Connect