块注释被字符串中的“*/”关闭

Block Comment Being Closed By "*/" In String

这是一个生活质量问题,可能非常简单,但我似乎找不到答案。

如果您开始块评论...

/*
my code here
string url = "lorumipsum....*/...lorumipsum"; <---this "*/" is closing the comment early
more code
*/

它被字符串中的任何“*/”关闭。有办法逃避这个吗?或者我只是手动“//”该行并块注释其余部分?

您可以 select 工具栏中的所有文本和评论(快捷键:Ctrl + K + U).它会像这样在所有 selected 行前添加 //

///*
//my code here
//string url = "lorumipsum....*/...lorumipsum"; <---this "*/" is closing the         comment early
//more code
//*/

无需手动执行此操作。

工具栏图片

或者,您可以按住 Alt 键,单击并绘制您想要注释掉的所有行,然后在前面键入 //它们就像您在多行编辑模式中一样。