例:
Public Class myclass
Private one As Integer
Public Property myproperty() As myproperty
Get
Return one
End Get
Set(ByVal value As myproperty)
one= value
End Set
End Property
End Class
myclass はクラスであり、1 つは属性であることは理解していますが、myproperty はどうでしょうか。