|
-
Mar 21st, 2003, 04:09 AM
#1
Thread Starter
Fanatic Member
Difference between Debug & Release
What is the difference between .NET Debug and Release mode of an application? What should I use, why? I understand for final deployment Release version is preferable but why not use the Release version from beginning?
Thanx
Life is a one way journey, not a destination. Travel it with a smile and never regret anything.
Yesterday is history, tomorrow is a mystery, today is gift - that's why we call it present.
-
Mar 21st, 2003, 04:32 AM
#2
yay gay
debugging mode creates some debug files that help u to trace out bugs i think..not sure though
\m/  \m/
-
Mar 21st, 2003, 07:17 AM
#3
Sleep mode
Re: Difference between Debug & Release
Originally posted by sbasak
What is the difference between .NET Debug and Release mode of an application? What should I use, why? I understand for final deployment Release version is preferable but why not use the Release version from beginning?
Thanx
Debug mode adds some extra things such : variable initializations , symbolic debug information ,and it allocates some space at the beginning and end of each block of storage, so its allocation patterns are somewhat different and slow
Release would simply gets rid of all that to produce final and optimized version .
Of course , you must use Release for distributing your project.
If you choose running your proj in release mode , it should be slower for big projs but it will work anyways .
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|