可能重复:
如何强制 C# 条件指令缩进?
假设我想在 Visual Studio 中输入:
class Program
{
private const Byte NUM_THREADS =
#if DEBUG
1;
#else
8;
#endif
}
如果我只是简单地输入它(即不手动修复任何缩进),Visual Studio 将像这样格式化它:
class Program
{
private const Byte NUM_THREADS =
#if DEBUG
1;
#else
8;
#endif
}
有什么我可以做的,它会自动缩进,所以它看起来像第一个例子?