Debug Mode

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#?
 
S

Sherif ElMetainy

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
 
S

Scott Allen

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");
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top