【发布时间】:2016-01-27 05:54:19
【问题描述】:
使用 Visual Studio 2015 社区。p>
我注释了两行代码。
//string Foo = ""; // 1st comment
////string Boo = ""; // 2nd comment
然后我屏蔽了两行,点击命令栏上的取消注释图标,将两行前面的2个注释字符(//)同时删除。
string Foo = ""; // 1st comment
//string Boo = ""; // 2nd comment
我对第 2 行的安排很奇怪。 它自动移动了。 我真的不想这样移动(我讨厌它)。
我该怎么办? 这就是我想要的。
string Foo = ""; // 1st comment
//string Boo = ""; // 2nd comment
谢谢
【问题讨论】: