1

这是我的代码块

   XY = xyList.[Select](Function(o) New XY() With {.y = New y() With {.xId = o.x.Id _
            , .xName = o.x.xName} _
            , .Stopped = o.Stopped _
            , .PNumber = o.PNumber _
            , .yId = o.yId _
            , .yName = o.yName _
         'need to add some comment here '
            , .Allocated = o.Allocated _
            , .TotalNo = o.TotalNo _
            }).ToList()

但是我尝试了'它的编译问题。

我需要在属性之间发表一些评论

谢谢

4

3 回答 3

6

简单的回答:你不能

更长的答案:在多行代码块中添加您想要的注释是无效的 VB.NET 代码。

如果它是 C/C++/C#(或变体),那么您可以使用/*...*/样式注释 - 但这些在 VB.NET 中不可用

(Minor update to remove the phrase "at the start of the line"... as it implies that you can have it at the end of the line. Again, you can't)

于 2012-10-09T09:20:38.927 回答
-1

您可以使用 Ctrl+K、Ctrl+C 来注释选定的行并使用 Ctrl+K、Ctrl+U 取消注释

OR ' 用于每一行...

于 2012-10-09T09:17:53.807 回答
-1

'

不是问题。

你不能在 VB.Net 中给出多行注释

于 2012-10-09T09:19:14.557 回答