system.writeline

  • Thread starter Thread starter aj
  • Start date Start date
A

aj

Hi Guys,
I have a random question,
i've been developing on CF quite a while an the first
thing i notice was the disabling of printlines
what do you guys do for debugging,
I don't debug much so i've been using MessageBoxes
which is kinda dumb
I know some guys who write debugging files which to me
seems a little costly
any input?
thanks
 
aj,

MessageBoxes aren't as dumb as you think. ;-) I use them myself sometimes.
If I have time-sensitive code such as serial communications, I use log files
(on the desktop too). And for everything else, often just stepping code
through the debugger will tell me what I need to know.
 
Back
Top