您有多少次出现以下情况?
你有一个或多个开关,如下所示:
if (thisIsTrue)
{
x = 1;
}
else if (thisIsTrueInstead)
{
x = 2;
}
else if (thisIsSometimesTrue)
{
x = 3;
}
else
{
x = 4;
}
你想要注释掉不相邻的代码;像以下x = 2和x = 4被评论:
if (thisIsTrue)
{
x = 1;
}
else if (thisIsTrueInstead)
{
//x = 2;
}
else if (thisIsSometimesTrue)
{
x = 3;
}
else
{
//x = 4;
}
有没有办法在IDE中进行不相邻的多选?
我发现自己点击,评论,点击,评论,点击,评论很多。任何帮助将非常感激。谢谢。 :)