Block commenting VB/VB.NET code

前端 未结 12 1137
死守一世寂寞
死守一世寂寞 2020-12-06 03:57

How to comment multiple lines of code/block of code in VB?

12条回答
  •  情话喂你
    2020-12-06 04:20

    VB doesn't have such a construct at the language level. It has single line comments using apostrophe character:

    ' hello world
    ' this is a comment
    Rem this is also a comment
    

    However, Visual Studio has a functionality to automate this task. Select the lines you want and press Ctrl+K+C for commenting and Ctrl+K+U for uncommenting (General Development Settings shortcuts, look at the "Edit -> Advanced" menu while selecting some code to see the shortcuts).

提交回复
热议问题