Results 1 to 3 of 3

Thread: Difference between Debug & Release

  1. #1

    Thread Starter
    Fanatic Member sbasak's Avatar
    Join Date
    Aug 2001
    Location
    Globe Trotter
    Posts
    524

    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.

  2. #2
    yay gay PT Exorcist's Avatar
    Join Date
    Apr 2002
    Location
    . . . my reason of shame
    Posts
    2,729
    debugging mode creates some debug files that help u to trace out bugs i think..not sure though
    \m/\m/

  3. #3
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083

    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
  •  



Click Here to Expand Forum to Full Width