Does C# have a not Conditional (!Conditional, NotConditional, Conditional(!)) attribute?
Conditional
!Conditional
NotConditional
Conditional(!)
i know C#
#ifndef ShowDebugString #define RemoveSDS #endif
?
edit: For more clarification. If ShowDebugString is defined Conditional["ShowDebugString"] will be called. If ShowDebugString is not defined, Conditional["RemoveSDS"] will be called.
Conditional["ShowDebugString"]
Conditional["RemoveSDS"]