Skip to content

Instantly share code, notes, and snippets.

@NIA
Created February 8, 2018 14:20
Show Gist options
  • Save NIA/02f9cfd685153a0923204f9545a20c07 to your computer and use it in GitHub Desktop.
Save NIA/02f9cfd685153a0923204f9545a20c07 to your computer and use it in GitHub Desktop.
Test case for Consulo C# preprocessor
namespace config {
class Quix{}
#define FOO_BAR
#if FOO_BAR
// active block
class FooBar{
}
#endif
#if !FOO_BAR
// non-active block - no difference
class FooBar : Quix{
}
#endif
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment