【发布时间】:2012-10-15 05:03:02
【问题描述】:
这里的例子:
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 呢?
【问题讨论】:
标签: oop uml class-diagram