|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Debug Vs Release ModeI am a SQL DBA just started to learn Visual Basic 2005 so I apologize
for this very simple question. What's the fundamental difference between debug mode vs release mode. I am using Visual Basic Express edition when I build my project it is creating two directories inside bin, debug and release. So far I come to know that in the release mode all the debugging information is removed (Debug.writeline etc.) What performance difference that will make? I also noticed that there is a .pdb file (Program debug database) created when you build your project. what is the .pdb file? Thanks in advance. Debug includes the PDB for debugging. It is also unoptomized. Release is
optimized and contains no debug info. PDB is a "database" of pointers to source code and enables debugging by linking instructions to source code. WIthout it, you cannot debug. -- Show quoteHide quoteGregory A. Beamer ************************************************* Think Outside the Box! ************************************************* "c_shah" <shah.chi***@netzero.net> wrote in message news:1146915551.841339.12270@i39g2000cwa.googlegroups.com... >I am a SQL DBA just started to learn Visual Basic 2005 so I apologize > for this very simple question. > > What's the fundamental difference between debug mode vs release mode. > > I am using Visual Basic Express edition when I build my project it is > creating two directories inside bin, debug and release. > > So far I come to know that in the release mode all the debugging > information is removed > (Debug.writeline etc.) What performance difference that will make? > > I also noticed that there is a .pdb file (Program debug database) > created when you build your project. what is the .pdb file? > > Thanks in advance. >
How getting eventhandler attached to an event?
Simple word count Win32API - FindFirstFile() in VB.NET single to string problem Error setting CSV to display text My app as system process Simple TCP communications examples Thread terminating instantly How to move the mouse around in vb.net Move emails (.msg files) between an Outlook inbox and a file direc |
|||||||||||||||||||||||