Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is the difference between a Debug and Release build? Is there a significant speed difference? Why or why not?
What is the difference between a Debug and Release build? Is there a significant speed difference? Why or why not?
✍: Guest
Debug build contain debug symbols and can be debugged while release build doesn’t contain debug symbols, doesn’t have [Contional(â€DEBUGâ€)] methods calls compiled, can’t be debugged (easily, that is), less checking, etc. There should be a speed difference, because of disabling debug methods, reducing code size etc but that is not a guarantee (at least not a significant one)
2014-02-25, 1803👍, 0💬
Popular Posts:
What are database triggers? How are the triggers fired? Read this collection of questions and answer...
What Are Named Parameters? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions Name...
How do we create DCOM object in VB6? Using the CreateObject method you can create a DCOM object. You...
What's the output of the following program? And why? #include main() { typedef union { int a; char b...
Can you explain in brief how the ASP.NET authentication process works? ASP.NET does not run by itsel...