Click here to Skip to main content
16,007,858 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to send text to external program Pin
E_Gold9-Nov-08 3:39
E_Gold9-Nov-08 3:39 
GeneralRe: how to send text to external program Pin
Giorgi Dalakishvili9-Nov-08 4:55
mentorGiorgi Dalakishvili9-Nov-08 4:55 
AnswerRe: how to send text to external program Pin
sph3rex9-Nov-08 6:31
sph3rex9-Nov-08 6:31 
GeneralRe: how to send text to external program Pin
jas0n2311-Nov-08 0:41
jas0n2311-Nov-08 0:41 
QuestionRun an application? Pin
dec829-Nov-08 1:49
dec829-Nov-08 1:49 
AnswerRe: Run an application? Pin
Guffa9-Nov-08 3:26
Guffa9-Nov-08 3:26 
GeneralRe: Run an application? Pin
dec829-Nov-08 5:21
dec829-Nov-08 5:21 
GeneralRe: Run an application? Pin
Guffa9-Nov-08 6:40
Guffa9-Nov-08 6:40 
Code compiled in debug mode contains a lot of extra NOP (no operation) instructions, so that there is always at least one instruction per source code line, in order for the debugger to be able to place a breakpoint on any line.

The compiler doesn't optimize the code by rearranging any instructions when compiling for debug mode, so that the compiled code exactly resembles the source code, in order to be able to single step through the code.

Exceptions takes a lot more time to handle when the code runs in debug mode.

The garbage collector works differently in debug mode, expanding the usage of variables to their entire scope, so that you can view the values of the variables in the debugger as long as they are in scope, even if the object is actually unused and could have been collected.

As the compiled code differs slightly, any race conditions or other timing problems that exist in your code may only occur in debug mode or only in release mode.

Despite everything, the person most likely to be fooling you next is yourself.

QuestionHow to find parent's child in matrix (in maze)? Pin
sitnet9-Nov-08 1:25
sitnet9-Nov-08 1:25 
AnswerRe: How to find parent's child in matrix (in maze)? Pin
Christian Graus9-Nov-08 6:06
protectorChristian Graus9-Nov-08 6:06 
GeneralRe: How to find parent's child in matrix (in maze)? Pin
Luc Pattyn9-Nov-08 8:09
sitebuilderLuc Pattyn9-Nov-08 8:09 
GeneralRe: How to find parent's child in matrix (in maze)? Pin
Pete O'Hanlon9-Nov-08 8:50
mvePete O'Hanlon9-Nov-08 8:50 
GeneralRe: How to find parent's child in matrix (in maze)? Pin
Luc Pattyn9-Nov-08 9:18
sitebuilderLuc Pattyn9-Nov-08 9:18 
QuestionA Question of Style Pin
Roger Wright8-Nov-08 21:36
professionalRoger Wright8-Nov-08 21:36 
AnswerRe: A Question of Style Pin
PIEBALDconsult9-Nov-08 4:45
mvePIEBALDconsult9-Nov-08 4:45 
GeneralRe: A Question of Style Pin
Roger Wright9-Nov-08 5:18
professionalRoger Wright9-Nov-08 5:18 
AnswerRe: A Question of Style Pin
Mark Churchill9-Nov-08 17:00
Mark Churchill9-Nov-08 17:00 
GeneralRe: A Question of Style Pin
Roger Wright9-Nov-08 18:52
professionalRoger Wright9-Nov-08 18:52 
GeneralRe: A Question of Style Pin
Mark Churchill9-Nov-08 18:59
Mark Churchill9-Nov-08 18:59 
GeneralRe: A Question of Style Pin
Roger Wright10-Nov-08 1:41
professionalRoger Wright10-Nov-08 1:41 
Questionmobile application using c# Pin
Zeyad Jalil8-Nov-08 20:16
professionalZeyad Jalil8-Nov-08 20:16 
AnswerRe: mobile application using c# Pin
Muammar©8-Nov-08 23:50
Muammar©8-Nov-08 23:50 
QuestionProxy and AxWebBrowser Pin
lalspo8-Nov-08 19:09
lalspo8-Nov-08 19:09 
AnswerRe: Proxy and AxWebBrowser [modified] Pin
sph3rex9-Nov-08 0:58
sph3rex9-Nov-08 0:58 
GeneralRe: Proxy and AxWebBrowser Pin
lalspo9-Nov-08 23:41
lalspo9-Nov-08 23:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.