使用条件属性

System.Diagnostics 名称空间中的 Conditional 属性添加到方法中是一种干净的方法来控制在构建中调用哪些方法,哪些不是。

#define EXAMPLE_A

using System.Diagnostics;
class Program
{
    static void Main()
    {
        ExampleA(); // This method will be called
        ExampleB(); // This method will not be called
    }

    [Conditional("EXAMPLE_A")]
    static void ExampleA() {...}

    [Conditional("EXAMPLE_B")]
    static void ExampleB() {...}
}