The Collection<(Of <(<'TElement>)>)> type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| Collection<(Of <(<'TElement>)>)> |
Creates a new empty list.
|
Methods
| Name | Description | |
|---|---|---|
| Add |
Adds an element to the collection.
| |
| AddRange |
Add an array of elements.
| |
| Clear |
Clears the collection.
| |
| Contains |
Returns true if the list contains the given element.
| |
| CopyTo |
Copies the elements of the collection to the specified array.
| |
| GetEnumerator |
Returns an iterator for the collection.
| |
| IndexOf |
Get the index of the given element in the collection.
| |
| Insert |
Insert an element at a particular index.
| |
| Remove |
Remove a particular element from the collection.
| |
| RemoveAt |
Removes the interactor at the given index.
| |
| Set |
Set the collection to hold only the given element.
|
Operators
| Name | Description | |
|---|---|---|
| ImplicitWideningImplicitImplicitImplicit(array<TElement>[]()[][] to Collection<(Of <<'(TElement>)>>)) |
Provides implicit conversion from TElement[].
| |
| ImplicitWideningImplicitImplicitImplicit(Collection<(Of <<'(TElement>)>>) to array<TElement>[]()[][]) |
Properties
| Name | Description | |
|---|---|---|
| Count |
Return the number of interactors in the collection.
| |
| IsReadOnly |
Returns false, to indicate that an collecion is writable.
| |
| Item |
Return the i-th element in the collection.
|
Events
| Name | Description | |
|---|---|---|
| Inserted |
The Inserted event will be fired whenever a new element has been inserted
into to the collection.
| |
| Removed |
The Removed event will be fired whenever an element has been removed
from the collection.
|