The Collection<(Of <(<'TElement>)>)> type exposes the following members.

Constructors

  NameDescription
Public methodCollection<(Of <(<'TElement>)>)>
Creates a new empty list.

Methods

  NameDescription
Public methodAdd
Adds an element to the collection.
Public methodAddRange
Add an array of elements.
Public methodClear
Clears the collection.
Public methodContains
Returns true if the list contains the given element.
Public methodCopyTo
Copies the elements of the collection to the specified array.
Public methodGetEnumerator
Returns an iterator for the collection.
Public methodIndexOf
Get the index of the given element in the collection.
Public methodInsert
Insert an element at a particular index.
Public methodRemove
Remove a particular element from the collection.
Public methodRemoveAt
Removes the interactor at the given index.
Public methodSet
Set the collection to hold only the given element.

Operators

Properties

  NameDescription
Public propertyCount
Return the number of interactors in the collection.
Public propertyIsReadOnly
Returns false, to indicate that an collecion is writable.
Public propertyItem
Return the i-th element in the collection.

Events

  NameDescription
Public eventInserted
The Inserted event will be fired whenever a new element has been inserted into to the collection.
Public eventRemoved
The Removed event will be fired whenever an element has been removed from the collection.

See Also