首先,是的,我尝试启用自动星号到每个新行注释。它适用于Visual Studio 2013,但它在VS 2015 RTM中不起作用。
我尝试将此处的步骤撤消无效: How to disable the automatic asterisk in Visual Studio when adding a multi-line comment in C#?
我重置了"导入和导出设置向导中的所有环境设置"但是没有工作。
在VS 2013中,我们还有可能做到以下几点:
public void Method(){**CURSOR IS HERE** }
当我的光标位于我指示的位置时按下回车键时,我会得到:
public void Method()
{
//I would start typing immediately!
}
是否可以将这些行为返回给VS?
答案 0 :(得分:2)
我还没有找到多行注释的答案(请参阅this question),但我已经修复了格式。它也困扰我了!
要启用块文本格式,请转到
Tools -> Options -> Text Editor -> C# -> Formatting -> Wrapping
并确保
Leave block on single line
和
Leave statements and member declarations on the same line
都被检查了。
您还可以在下一行中更改代码块的缩进:
Tools -> Options -> Text Editor -> C# -> Formatting -> Indentation
Indent open and close braces