Count 属性(Collection 对象)
更新:2007 年 11 月
返回一个包含集合中的元素数量的 Integer。只读。
Public ReadOnly Property Count() As Integer
备注
使用 Count 属性确定 Collection 对象中元素的数量。
示例
此示例阐释 Count 属性的用法,以显示变量 birthdays 的 Collection 对象 (Visual Basic) 中的元素数量。
Dim birthdays As New Collection()
birthdays.Add(New DateTime(2001, 1, 12), "Bill")
birthdays.Add(New DateTime(2001, 1, 13), "Joe")
birthdays.Add(New DateTime(2001, 1, 14), "Mike")
birthdays.Add(New DateTime(2001, 1, 15), "Pete")
...
MsgBox("Number of birthdays in collection: " & CStr(birthdays.Count))
Collection 对象从 1 开始,这表示元素的索引值范围从 1 到 Count 属性的值。
要求
**类:**Collection
**程序集:**Visual Basic 运行库(在 Microsoft.VisualBasic.dll 中)