我对c#比对vb.net更熟悉,但我正在努力弄清楚如何编写vb.net等价于:
public float this[int row, int col]
{
get
{
...
}
set
{
...
}
}这在vbnet中是可能的吗?
如果我知道这类财产的名称,我在google上可能会有更好的运气
提前感谢
发布于 2015-12-03 17:04:27
使用http://converter.telerik.com,我得到了以下信息:
Public Default Property Item(row As Integer, col As Integer) As Single
Get
' ...
End Get
Set
' ...
End Set
End Propertyhttps://stackoverflow.com/questions/34071910
复制相似问题