Removing code from Release build in .NET - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T09:23:00Zhttp://stackoverflow.com/feeds/question/337431http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/337431/removing-code-from-release-build-in-net9Removing code from Release build in .NETCurro2008-12-03T15:05:51Z2008-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#33744014Answer by Jeff Yates for Removing code from Release build in .NETJeff Yates2008-12-03T15:08:34Z2008-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#3374441Answer by ZombieSheep for Removing code from Release build in .NETZombieSheep2008-12-03T15:09:08Z2008-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#3374628Answer by Dave R. for Removing code from Release build in .NETDave R.2008-12-03T15:15:52Z2008-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>