在Visual Studio中快速评论/ *选择C#代码* /(不是//整行)

时间:2012-08-24 08:17:20

标签: c# visual-studio-2010 comments keyboard-shortcuts

Visual Studio有一个工具栏按钮/键盘快捷键/菜单项comments out selected lines of C# code使用//

是否存在使用/* ... */注释仅选定代码的等效内容?

e.g。

鉴于此代码

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"*/);

当我在修复一些错误的同时对现有代码库进行一些实验和临时修改时,这将非常有用。

2 个答案:

答案 0 :(得分:18)

Resharper这样做。它花钱 - 但值得。

它被称为“Block Comment”。

默认键盘快捷键是 Ctrl + Shift + /

答案 1 :(得分:0)

你可以创建一个宏,但这将重新发明轮子,并且可能无法证明这种方法。