可能重复:
Does VB.NET not allow line continuations over commented-out lines?
我有以下VB.NET代码:
Return BooleanVariableA _
AndAlso BooleanVariableB _
AndAlso BooleanVariableC
我想将第二行注释掉以进行调试。如果我在它前面加'
,那么我会遇到语法错误。有没有办法可以在VB.NET中的多行语句中只注释掉一行?