Conditional Attribute

What Does Conditional Attribute Mean?

A conditional attribute is a tag used to mark a method or class whose execution depends on the definition of preprocessing identifier.

Advertisements

A conditional attribute indicates a condition to specify conditional compilation wherein methods are selectively called on the basis of definition of symbols. It instructs the compiler to compile (into Microsoft Intermediate Language) or not compile specific blocks of code, based on a condition – whether or not a specific conditional compilation symbol is defined. If specific symbols have not been defined at the instant they are called, then calls to that method or class will be ignored by the compiler.

Techopedia Explains Conditional Attribute

A conditional attribute has the following characteristics:

  • It can be applied to methods and classes, but only if they are derived from an attribute.
  • While applying conditional attribute to a class, the attribute class will be emitted to metadata only if the conditional compilation symbol is defined.
  • It takes one parameter, which is the identifier symbol controlling the compilation.
  • The arguments passed to a conditional method or attribute class will be type-checked by the compiler.
  • It is completely taken care of by the compiler and not by the run time.
  • It cannot be applied to a method used in a delegate-creation expression.
  • It does not affect the code generated for conditional method, but does affect the call to the method.

A conditional attribute provides a declarative programming pattern and helps to easily maintain source code. By applying a conditional attribute at the method level, source code is more readable. The caller of a method need not take additional code for conditional compilation. A conditional attribute is used to enable tracing and logging functionalities in the debug builds by using the identifier DEBUG to display and log diagnostic information related to the application. Also, it helps to separate logic related to the debug build (in systems used for development) from release builds, which are deployed in sites and applications. To maintain multiple editions (with selected features in some edition) of a software without code duplication, conditional compilation forms the right technique by which the single main source code is maintained for multiple editions based on the respective symbols defined for them.

Following are few rules to follow while using a conditional attribute:

  • A conditional method inside a class or struct declaration must have a return type as void.
  • While using multiple identifiers as conditional attributes, the inclusion of method(s) is based on the result of logical OR or logical AND on the defined symbols.
  • It cannot be specified on a method in an interface declaration.
  • A conditional method cannot be preceded with “override” keyword, but it can be virtual. If overridden, it is considered to be a conditional implicitly.
  • Symbols considered for conditional compilation can be defined as compiler command-line options or as environment variables from the OS shell or as pragmas (using preprocessor directive “#define”) in the source code.
  • Unlike C++, definition of symbols in C# can be in any order and hence the ordering between “#define” and a conditional method has to be properly set.

Although usage of “#if and #endif” forms an alternate option to conditional attribute, the latter provides a more clean, elegant and less error-prone approach when compared to the former. Internally, the difference is that while using a conditional attribute for a method, method will still be a part of the assembly and not loaded. But in the case of #if / #endif, method will not be visible in the assembly itself.

Advertisements

Related Terms

Latest DevOps Terms

Related Reading

Margaret Rouse

Margaret Rouse is an award-winning technical writer and teacher known for her ability to explain complex technical subjects to a non-technical, business audience. Over the past twenty years her explanations have appeared on TechTarget websites and she's been cited as an authority in articles by the New York Times, Time Magazine, USA Today, ZDNet, PC Magazine and Discovery Magazine.Margaret's idea of a fun day is helping IT and business professionals learn to speak each other’s highly specialized languages. If you have a suggestion for a new definition or how to improve a technical explanation, please email Margaret or contact her…