ppittle / pMixins

pMixins - Mixin framework for C#
http://pMixins.com
Apache License 2.0
23 stars 5 forks source link

Support C# Preprocessor Directives #34

Open naskovai opened 9 years ago

naskovai commented 9 years ago

An example scenario is when you want to have different access modifiers of a property depending on a predefined compilation symbol.

#if GenerateXmlSerializers
    public string ProxyAmount
#else
    internal string ProxyAmount
#endif
ppittle commented 9 years ago

Good idea!