VB.NET相当于这段代码

Moi*_*Ngp 14 c# vb.net c#-to-vb.net

什么是这个代码的VB.NET等价物..

public virtual ICollection<Comment> Comments { get; set; }
Run Code Online (Sandbox Code Playgroud)

Cod*_*ray 30

VB.NET(在版本10中)具有与C#类似的自动属性.等效语法如下:

Public Overridable Property Comments() As ICollection(Of Comment)
Run Code Online (Sandbox Code Playgroud)

自动转换器倾向于产生比必要更冗长的语法.您可以根据需要进行扩展,但除非您使用旧版本的编译器,否则它不是必需的:

Private m_Comments As ICollection(Of Comment)

Public Overridable Property Comments() As ICollection(Of Comment)
    Get
        Return m_Comments
    End Get
    Set(ByVal value As ICollection(Of Comment))
        m_Comments = value
    End Set
End Property
Run Code Online (Sandbox Code Playgroud)


Pet*_*sen 5

Public Overridable Property Comments() As ICollection(Of Comment)
Run Code Online (Sandbox Code Playgroud)