Debug Mode

  • Thread starter Thread starter Nick K.
  • Start date Start date
N

Nick K.

I want a line of code to execute only if it is in debug mode, is there a way
to do this in .Net/C#?
 
Hello

If you want conditional compilation (i.e. the code would be included only in
the debug version of the application) use the following

#if DEBUG
// your debug code here
#else
// code for release version
#endif

If you want code to execute when a debugger is attached to the process

if(System.Diagnostics.Debugger.IsAttached)
{
// Your code here
}

Best regards,
Sherif
 
And one more:

Don't forget the System.Diagnostics.ConditionalAttribute class.

[Conditional("CONDITION1")]
public static void Method1()
{
Debug.Write("Method1 - DEBUG and CONDITION1 are specified\n");
Trace.Write("Method1 - TRACE and CONDITION1 are specified\n");
}
 
Back
Top