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

问题描述 投票:0回答:2
Visual Studio 有一个工具栏按钮/键盘快捷键/菜单项,可以使用

// 注释掉 C# 代码的 所选行


是否有一个等效的工具可以使用

/* ... */

注释掉仅所选代码


例如

鉴于此代码

string s = "hello"; Console.WriteLine(s + " world");

如果您选择 
+ "world"

并按

Ctrl
+KCtrl+C 那么您最终会得到 string s = "hello"; //Console.WriteLine(s + " world");

不过我愿意

string s = "hello"; Console.WriteLine(s /*+ " world"*/);

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

c# visual-studio-2010 comments keyboard-shortcuts
2个回答
19
投票
Resharper

可以做到这一点。虽然要花钱 - 但这是值得的。 这就是所谓的“

阻止评论

”。 默认键盘快捷键是

Ctrl

+Shift+/


0
投票

© www.soinside.com 2019 - 2024. All rights reserved.