1

我在这里找到了 Visual Studio .editorconfig 设置的列表。但我不确定它是否完整。它包含五个间距设置的列表,这些设置似乎都与我想要的设置无关。

特别是,我想控制逻辑运算符周围的间距,例如:

if (x!=0)
if (x != 0)

编辑:我特别询问.editorconfig。关键是它是解决方案内部的设置,而不是 Visual Studio 设置中的设置。

4

1 回答 1

3

查看.editorconfig 参考,您需要的是以下行:

csharp_space_around_binary_operators  = before_and_after

它在那里提到这个标志“当前被这个错误阻止”。

于 2018-01-29T17:31:45.320 回答