March 2003
Intermediate to advanced
512 pages
14h 30m
English
Dictionary.Count Property
Long
A read-only property that returns the number of key/item pairs in a Dictionary object.
This property returns the actual number of items in the dictionary. So if you use the Count property to iterate the items in the dictionary, you would use code like the following:
Dim ctr For ctr = 0 to dictionary.Count - 1 ' do something Next
Read now
Unlock full access