有人能告诉我什么是以下代码提取的VB.NET 2010等价物: “这个”被转换为什么?我需要一点帮助。谢谢你们。
public class CartItemList
{
public CartItem this[int index]
{
get{ return cartItems[index];}
set{ cartItems[index] = value;}
}
}
答案 0 :(得分:5)
VB中的default property,例如
Default Public Property Item(ByVal id As String) As Cart
Get
Return id & Now().ToString
End Get
End Property
(即使在C#代码中,string
如何转换为Cart
还不清楚,请注意......)
答案 1 :(得分:0)
Public Class CartItemList
Default Public ReadOnly Property Item(id As String) As Cart
Get
Return id + Now().ToString()
End Get
End Property
End Class