我找到了一个Visual Studio .editorconfig设置列表here。但我不确定它是否完整。它包含五个间距设置的列表,其中没有一个似乎与我想要的设置相关。
特别是,我想控制逻辑运算符周围的间距,例如:
if (x!=0)
if (x != 0)
编辑:我特意询问.editorconfig。关键是它是解决方案中的一个设置,而不是在Visual Studio设置中。
答案 0 :(得分:2)
查看.editorconfig reference看起来你需要的是以下一行:
csharp_space_around_binary_operators = before_and_after
它提到那个标志是"目前被this bug"阻止了。