Removing code from Release build in .NET - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T09:23:00Z http://stackoverflow.com/feeds/question/337431 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/337431/removing-code-from-release-build-in-net 9 Removing code from Release build in .NET Curro 2008-12-03T15:05:51Z 2008-12-03T15:22:31Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/337431/removing-code-from-release-build-in-net/337440#337440 14 Answer by Jeff Yates for Removing code from Release build in .NET Jeff Yates 2008-12-03T15:08:34Z 2008-12-03T15:08:34Z <p>You can apply the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.conditionalattribute.aspx" rel="nofollow">ConditionalAttribute</a> attribute, with the string "DEBUG" to any method and calls to that item will only be present in DEBUG builds.</p> <p>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).</p> http://stackoverflow.com/questions/337431/removing-code-from-release-build-in-net/337444#337444 1 Answer by ZombieSheep for Removing code from Release build in .NET ZombieSheep 2008-12-03T15:09:08Z 2008-12-03T15:10:20Z <p>Have a look at <a href="http://www.csharphelp.com/archives/archive36.html" rel="nofollow">preprocessor directives</a>...</p> <pre><code>#if DEBUG //code #endif </code></pre> http://stackoverflow.com/questions/337431/removing-code-from-release-build-in-net/337462#337462 8 Answer by Dave R. for Removing code from Release build in .NET Dave R. 2008-12-03T15:15:52Z 2008-12-03T15:22:31Z <p>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:</p> <pre><code>#ifdef DEBUG // Your code #endif </code></pre> <p>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):</p> <pre><code>[Conditional("DEBUG")] private void MyDebugMethod() { // Your code } </code></pre>