Conditional compilation without polluting your code?
You know how you can put Debug and Trace statements in your code and as long as you uncheck the Debug or Trace option in your project properties, those statements are removed from your compiled version. Well, is there a way that I can achieve that functionality with some statements of my own (not Debug or Trace) without polluting my code with a bunch of crappy conditional compilation statements surrounding every statement I want left/removed?
Perhaps an attribute or something?

