默认格式化方法
void Start() { }
C# 大括号不换行
void Start() { }
需要安装
在设置中
禁用 Use Omnisharp
启用 Enable Editor Config Support
在项目根目录创建 .editorconfig 配置文件,内容如下
root = true [*] indent_style = space charset = utf-8 [*.cs] indent_size = 4 tab_width = 4 csharp_new_line_before_open_brace = none dotnet_diagnostic.IDE0055.severity = error
保存后重启,效果如下
引用自:
如何让我的 Omnisharp 格式化程序在 C# 开发工具包中工作? ·期刊 #6026 ·dotnet/vscode-csharp ·GitHub的
标签:换行,Start,VSCode,C#,Unity,csharp,大括号 From: https://www.cnblogs.com/letleon/p/17917815.html