Thread: Debug Mode
View Single Post
  #3 (permalink)  
Old 11-28-2006, 05:18 PM
Void's Avatar   
Void Void is offline
Programming Expert
 
Join Date: Jun 2006
Posts: 410
Credits: 0
Rep Power: 11
Void is on a distinguished road
Default Determine if you are in debug mode

Use [Conditional("Debug")]

Code:
[Conditional("Debug")]
private void whatever(){
MessageBox.Show("Debug");
}
__________________
Void
Reply With Quote