- #define NET2
- #if NET2
- namespace System.Runtime.CompilerServices
- {
- public class ExtensionAttribute : Attribute { }
- }
- namespace System
- {
- public delegate void Action();
- public delegate void Action<T0,T1>(T0 t0,T1 t1);
- }
- #endif
第四步,把生成的 Patch_Csmacro.cs 添加到项目中来。
搞定以后,选择不同的target,编译时产生的就是对该target的条件编译!
原文链接:http://www.cnblogs.com/xiaotie/archive/2012/11/26/2789810.html