如何告诉Resharper以不同方式格式化这些字段属性?

时间:2015-09-09 01:44:44

标签: c# .net resharper code-formatting

当我使用Resharper的Code-Cleanup时,这就是它对我的支持领域的作用......

[DebuggerBrowsable(DebuggerBrowsableState.Never)] private readonly DateTime_auctionOn;

^所有在一条线上。

如何告诉R#我希望它的格式如下:

[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private readonly DateTime _auctionOn;

樱桃在上面。

2 个答案:

答案 0 :(得分:7)

在选项中的Code Editing > C# > Formatting Style > Line Breaks and Wrapping下查看并查看以下条目。特别是这一个:Place field attribute on same line

Place field attribute on same line

答案 1 :(得分:0)

转到Resharper选项→Code EditingCode Cleanup,现在您需要添加自己的代码清理配置文件(在屏幕截图中作为MyProfile)并根据需要设置规则,并保存配置文件。 (保持取消选中重新格式代码enter image description here

更重要的是,您需要在清理时选择自定义配置文件

enter image description here