如何设置 Visual Studio

How to se up the Visual Studio

使用 Visual Studio 2015 社区。

我注释了两行代码

//string Foo = "";      //  1st comment
////string Boo = "";    //  2nd comment

然后我屏蔽了两行,点击命令栏的取消注释图标,同时删除了两行前面的2个注释字符(//)。

string Foo = "";      //    1st comment
                //string Boo = "";  //  2nd comment

我对第二行的安排很奇怪。 它自动移动了。 我真的不想这样移动(我讨厌它)。

我需要做什么? 这就是我想要的。

string Foo = "";      //    1st comment
//string Boo = "";    //    2nd comment

谢谢

我从你的问题中得到了什么, 你应该取消注释两次,这不是一个严重的问题。