我想配置我的 EditorConfig ( https://editorconfig.org/ ) 配置,通过在开始之后和结束括号之前添加空格,C# 代码片段 var v = new Object(kind) {Id = num++}; 会自动重新格式化为 var v = new Object(kind) { Id = num++ };。我浏览了文档并检查了 C# 手册( https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference?view=vs-2017#example-editorconfig-file ),但还没有找到解决方案。

最佳答案

你可以 define 它的 .editorconfig
它是为 Visual Studio 社区 2019 设计的,但也适用于其他版本。
此外,您需要配置 VS 以在“保存操作”see 上应用这些设置

关于c# - EditorConfig:在打开/关闭C#括号之后和之前强制使用空格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53232112/

10-13 06:13