有谁知道在带有 ReSharper 6.1 的 Visual Studio 2010 中是否有办法用右括号注释掉选定的代码行 - 或者只是注释掉突出显示的左括号及其相应的右括号?这是我的意思的一个例子:
if(something) {
do(this);
}
我正在寻找一个热键,这样当if(something) {
被选中时,它会注释掉if(something) {
and }
,最好修复标签一旦被这样评论:
// if(something) {
do(this);
//}
有谁知道在带有 ReSharper 6.1 的 Visual Studio 2010 中是否有办法用右括号注释掉选定的代码行 - 或者只是注释掉突出显示的左括号及其相应的右括号?这是我的意思的一个例子:
if(something) {
do(this);
}
我正在寻找一个热键,这样当if(something) {
被选中时,它会注释掉if(something) {
and }
,最好修复标签一旦被这样评论:
// if(something) {
do(this);
//}