//
注释掉 C# 代码的 所选行。
是否有一个等效的工具可以使用
/* ... */
注释掉仅所选代码?
例如
鉴于此代码
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"*/);
当我对现有代码库进行一些实验性和临时性修改同时修复一些错误时,这将很有用。