索引用于标识购物车中的每个商品它存储每个产品的ProductID如果购物车中的第一个商品是围巾则索引中的第一项将包含围巾的ProductID如果没有获得ProductID则返回而不是指示该产品当前不在购物车中并且需要为其创建一个CartItem对象
最后说明Total:
Public ReadOnly Property Total() As Double
Get
Dim t As Double
If _items Is Nothing Then
Return
End If
For Each Item As CartItem In _items
t += ItemLineTotal
Next
Return t
End Get
End Property
它也是相当简单的特性如果集合中没有任何项(通过查看它是否是Nothing来检查这一点)则不可以进行任何算术操作否则遍历Cartltem集合中的每个Item针对该项增加LineTotal特性并且作为变量t返回总数
ASPNET 入门教程完整版
[] [] [] [] [] [] [] [] []