How to comment out a block of code that already has multiple line comments?
I think your IDE have find and replace option.
Add /*
at starting
and */
at ending
Within the code block
Replace */
with *//*
then to if you want to remove the comments you made :
Remove /*
at starting, Remove */
at ending
Within the code block
Replace *//*
with */