我比使用vb.net更熟悉c#,但我想弄清楚如何编写vb.net相当于:
public float this[int row, int col]
{
get
{
...
}
set
{
...
}
}
这可以在vbnet中使用吗?
如果我知道这种类型的财产被称为什么,我可能在谷歌上有更好的运气
提前致谢
答案 0 :(得分:1)
使用http://converter.telerik.com,我明白了:
Public Default Property Item(row As Integer, col As Integer) As Single
Get
' ...
End Get
Set
' ...
End Set
End Property