Home > OS >  how do I change the way VS comment out the lines from `//` to `/**/`
how do I change the way VS comment out the lines from `//` to `/**/`

Time:03-18

In Visual Studio, I selected the lines and click "Comment out the selected lines" in the tool bar. The VS will put // in front of all selected lines. How do I change the style so that the VS put the selected lines in between /**/?

CodePudding user response:

Currently, there is no such setting you want in C project. You can go to Developer Community to propose this new feature and post the link in comment. In addition, Visual Studio now supports Ctrl Shift / to comment and uncomment.

  • Related