Skip to content

Instantly share code, notes, and snippets.

@miklund
Last active January 15, 2016 19:29
Show Gist options
  • Save miklund/ad5fd2479251eb9cb0ee to your computer and use it in GitHub Desktop.
Save miklund/ad5fd2479251eb9cb0ee to your computer and use it in GitHub Desktop.
# Title: Conditional Compilation
# Author: Mikael Lundin
# Link: http://blog.mikaellundin.name/2009/02/27/conditional-compilation.html
#if Debug
Console.WriteLine("Hello");
#else
Console.WriteLine("World");
#endif
bool debug = false;
#if Debug // Enable stylesheet debug in development
debug = true;
#endif
XslCompiledTransform transformer = new XslCompiledTransform(debug);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment