I just had this throw a compilation error while refactoring some legacy (hence VB.NET) unit tests, where I wanted to just comment out one of the sample inputs to MBUnit:
<RowTest> _
'<Row("Something")> _
<Row("SomethingElse")> _
Which gave:
Attribute specifier is not a complete statement. Use a line continuation to apply the
attribute to the following statement.
Is it actually treating the whitespace/commented-out line as an actual line? Generally, when I gripe about VB.NET, I preface it with, "Now, I wouldn't want to be the guy writing their grammar, but..." This seems like one of those cases where I don't know the answer, if I'm right. But I do know want to know the answer, in this case.