Results 1 to 3 of 3

Thread: [RESOLVED] Debug vs. Release

  1. #1

    Thread Starter
    Lively Member bluej774's Avatar
    Join Date
    Jul 2005
    Posts
    70

    Resolved [RESOLVED] Debug vs. Release

    In Visual Basic .NET 2003, what's the difference between debug and release versions of compiled programs? Thanks.

  2. #2
    Frenzied Member Phill64's Avatar
    Join Date
    Jul 2005
    Location
    Queensland, Australia
    Posts
    1,201

    Re: Debug vs. Release

    Quote Originally Posted by bluej774
    In Visual Basic .NET 2003, what's the difference between debug and release versions of compiled programs? Thanks.
    Exactly what it implys, when in debug mode, a debugging file is also compiled (which you will find in \bin) and this allows you to set breakpoints and hop to lines where exceptions occur. Whereas Release is the final product and thus cannot be deconstructed to assist in fault finding.

    In other words any error that occur in your app will just be an error and close down the program, unlike in debug mode

  3. #3
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682

    Re: [RESOLVED] Debug vs. Release

    The compiled EXE's are different too, the debug is significantly slower at math than release.
    I don't live here any more.

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