What is the difference between a Debug and Release build? Is
there a significant speed difference? Why or why not?
Answer Posted / chandra sekhar dola
- The biggest difference between these is that:
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. Also, because
the symbol info is not emitted in a release build, the size
of the final executable is lesser than a debug executable.
- Usually they are configured to build
differently. The debug build includes building debug
symbols (the .pdb files that live next to the .dll
assemblies) and doesn't perform code optimization which
speeds up compiling a bit.
| Is This Answer Correct ? | 28 Yes | 1 No |
Post New Answer View All Answers
Explain what is postback in asp. Net?
Describe the application event handlers in ASP.NET?
What is autopostback in asp net?
witch is the best insistute in sharpoint course.what abt future of share point course.
What is an il?
If Instancing = Single use for ActiveX Exe, how will this be executed if there are 2 consecutive client requests ?
Can I have a unique key as foreign key?
Explain about the Class view window?
Which method is used to perform all validation at the page level?
what is the difference between response.write() and response.output.write()?
Can you change a master page dynamically at runtime? How?
Give an example of what might be best suited to place in the application_start and session_start subroutines?
What is the difference between asp.net and mvc?
What is the difference between viewstate and hidden field in asp.net?
Explain repository pattern in asp.net mvc? : asp.net mvc