#if and [Conditional]

Old school folks who have done Fortran, C, C++ etc knows the old friend, #if.  Net introduced a [Conditional] attribute and give examples for use. On occasion I have seen newer developers  voicing a dislike of seeing #if in code and advocate the use of [Conditional] as a standard.  This does not fly for me – simply because it results in code becoming twisted.

 

Often the reason for the resistance is simply unfamiliarity with it, or in some cases, some past experience working with horrible usage (I reviewed the code base from a major (not-Microsoft) software provider of tax software and saw nightmare usage patterns with the #if) has left a conditioning on their psyche.

 

For example, the following code WILL NOT COMPILE

Code Snippet
  1. public void Init(HttpApplication context)
  2. {
  3.     context.EndRequest += EndRoutine;
  4.  
  5. }
  6. [Conditional("TRACE")]
  7. private void EndRoutine(object o, EventArgs e)
  8. {

 

Error    1    Cannot create delegate with 'ErrorTracking.EndRoutine(object, System.EventArgs)' because it has a Conditional attribute  

 

This variation will compile.

Code Snippet
  1. public void Init(HttpApplication context)
  2. {
  3. #if TRACE
  4.     context.EndRequest += EndRoutine;
  5. #endif
  6. }
  7. private void EndRoutine(object o, EventArgs e)
  8. {

 

It is possible to still use the conditional by chaining routines – but I dislike it severely because it add an extra call and complicate code reviews (i.e. I believe in KISS)

Code Snippet
  1. public void Init(HttpApplication context)
  2. {
  3.     context.EndRequest += EndRoutine;
  4.  
  5. }
  6. private void EndRoutine(object o, EventArgs e)
  7. {
  8.     EndRoutine2(o, e);
  9. }
  10. [Conditional("TRACE")]
  11. private void EndRoutine2(object o, EventArgs e)
  12. {

Another use of conditional compile results in code being modified. Since the Conditional Attribute does not allow items to be returned NOR the use of out parameters, you are forced to use properties or the instance or instance methods. Both of these approaches end up obtuficating the code.

 

Example of error when using out

Code Snippet
  1. [Conditional("TRACE")]
  2. private void EndRoutine2(object o, EventArgs e, out string x)

 

Error    1    Conditional member ErrorTracking.EndRoutine2(object, System.EventArgs, out string)' cannot have an out parameter.

 

The use of #if and similar cannot be avoided by the use of the [Conditional] attribute. The [Conditional] attribute is ideal for tracing and logging, but for a lot of other uses – it fails.

Comments

Popular posts from this blog

Yet once more into the breech (of altered programming logic)

Simple WP7 Mango App for Background Tasks, Toast, and Tiles: Code Explanation

How to convert SVG data to a Png Image file Using InkScape