pMixins
pMixins copied to clipboard
Support C# Preprocessor Directives
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
Good idea!