vote up 9 vote down star
3

I've been doing some performance testing around the use of System.Diagnostics.Debug, and it seems that all code related to the static class Debug gets completely removed when the Release configuration is built. I was wondering how the compiler knows that. Maybe there is some class or configuration attribute that allows to specify exactly that behavior.

I am trying to create some debugging code that I want completely removed from the Release configuration, and I was wondering if I could do it just like the Debug class where simply changing the configuration parameters removes the code.

flag

3 Answers

vote up 14 vote down check

You can apply the ConditionalAttribute attribute, with the string "DEBUG" to any method and calls to that item will only be present in DEBUG builds.

This differs from using the #ifdef approach as this allows you to release methods for use by other people in their DEBUG configurations (like the Debug class methods in the .NET framework).

link|flag
Didn't know that, that could come in useful! – Stormenet Dec 3 '08 at 15:10
This is exactly what I was hoping for, since it is customizable and extensible. – Curro Dec 3 '08 at 15:40
vote up 1 vote down

Have a look at preprocessor directives...

#if DEBUG
    //code
#endif
link|flag
vote up 8 vote down

Visual Studio defines a DEBUG constant for the Debug configuration and you can use this to wrap the code that you don't want executing in your Release build:

#ifdef DEBUG
  // Your code
#endif

However, you can also decorate a method with a Conditional attribute, meaning that the method will never be called for non-Debug builds (the method and any call-sites will be removed from the assembly):

[Conditional("DEBUG")]
private void MyDebugMethod()
{
  // Your code
}
link|flag
Conditional methods can never return anything other than void... – Pop Catalin Dec 3 '08 at 15:19
Thanks for the edit Pop - I missed that in my haste! – Dave R. Dec 5 '08 at 0:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.