collection syntax

For a Things collection that contains Thing objects, the collection itself would be referred to as

object.Things

while an individual Thing object would be referred to as

object.Things.Item(index)

-or-

object.Things(index)

where index is an integer denoting a specific element in the collection.