Visual Studio 有一个工具栏按钮/键盘快捷方式/菜单项,可以使用//
.
是否有一个等价的使用注释掉选定的代码/* ... */
?
例如
鉴于此代码
string s = "hello";
Console.WriteLine(s + " world");
如果你选择+ "world"
并点击Ctrl+ K, Ctrl+C那么你最终会得到
string s = "hello";
//Console.WriteLine(s + " world");
不过,我想
string s = "hello";
Console.WriteLine(s /*+ " world"*/);
当我在修复一些错误的同时对现有代码库进行一些实验性和临时性修改时,这将很有用。