What is the difference between a Debug and Release build? Is
there a significant speed difference? Why or why not?
Answer Posted / atreya a
Here is a good article which explains clearly the difference
between RELEASE and DEBUG Builds:
http://dotnetthoughts.wordpress.com/2007/11/29/debug-and-release-builds/
Below given is the conclusion of above link:
1.
We all know that there is no .PDB file generated in RELEASE
database.
2.
If we see the IL(Intermediate Lang) code using ILDASM then
we find that DEBUG build code has some extra variables to
store the current values of variables and some extra nop(no
operation) & GOTO statements which are helpful for the PDB
file to debug the code.
3.
Last but not the least; the RELEASE build code is not at all
OPTIMIZED in comparison to the DEBUG build code(as shown in
the link given above). Any optimization is done by JIT on
top of the IL code at the execution time.
| Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
how can we create wcf in asp.net and how can we cll that in to asp.net application?plsss tel me each step clearly
How do we ensure view state has not tampered?
Write a code for passing ArrayList in Web API?
How to change Master page in ASP.Net using code?
Define web.config in .net?
What is the differences between a primary key and a unique key in sql server?
What is query string? What are its advantages and limitations?
How can u deifne the benefits and limitation of using Viewstate for state management?
What are the events in a page life cycle?
Explain the difference between server control and html control.
What is the main function of url routing system in asp.net mvc? : asp.net mvc
What are web server controls in asp.net?
Explain the Order of events in an asp.net page?
What are the two Layouts supported by a Web form in ASP.NET?
What is the difference between page.registerclientscriptblock and page.registerstartupscript?