Xamarin Studio 中的 C# 代码格式化(即,当按下 Ctrl-I 来格式化文档时)将行尾注释放在新行上。我在 C# 代码格式设置策略设置中找不到任何方法来更改它。如何更改它以在同一行保留行尾注释?
例如,使用以下代码:
public class Foo
{
int bar; // comment
}
如果我按 Ctrl-I(或者从菜单中单击 Edit > Format > Format Document,或者从菜单中选择代码并单击 Edit > Format > Format Selection),代码将重新格式化为:
public class Foo
{
int bar;
// comment
}
我在 OS X 上使用v4.2.2 build 2 v4.3 build 52 。
注意:这似乎是一个错误。所以我的问题真的是——有没有遇到过这个问题的人想出一个修复或解决方法,如果是这样,它是什么?