这里的例子:
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 是类,一个是属性,但是 myproperty 呢?