Vb.NET 编入索引 属性
Vb.NET indexed property
与 vb.net 相比,我对 c# 更熟悉,但我正在尝试弄清楚如何编写 vb.net 等价于:
public float this[int row, int col]
{
get
{
...
}
set
{
...
}
}
这在 vbnet 中可行吗?
如果我知道这种类型的 属性 叫什么,我的运气可能会更好 google
提前致谢
使用 http://converter.telerik.com,我得到这个:
Public Default Property Item(row As Integer, col As Integer) As Single
Get
' ...
End Get
Set
' ...
End Set
End Property
与 vb.net 相比,我对 c# 更熟悉,但我正在尝试弄清楚如何编写 vb.net 等价于:
public float this[int row, int col]
{
get
{
...
}
set
{
...
}
}
这在 vbnet 中可行吗?
如果我知道这种类型的 属性 叫什么,我的运气可能会更好 google
提前致谢
使用 http://converter.telerik.com,我得到这个:
Public Default Property Item(row As Integer, col As Integer) As Single
Get
' ...
End Get
Set
' ...
End Set
End Property