如何在能够支持此功能的类中创建函数: (有点任务)
dim ko as integer = cell(x,y)
和
cell(c,y) = 3
最亲切的问候,
adoloul
答案 0 :(得分:0)
* NOTA :这肯定适用于vb,但我们转而用您的语言验证
Ok nope不再搜索,我使用dotnotpearls资助
我必须使用具有setter和getter的属性
Public Property cell(ByVal x As Integer, ByVal y As Integer) As Integer
Get
Return cells(x, y)
End Get
Set(value As Integer)
cells(x, y) = value
End Set
End Property
)