Click or drag to resize

DataStoreVirtualCollectionT Methods

The DataStoreVirtualCollectionT generic type exposes the following members.

Methods
  NameDescription
Public methodAdd(Object)
Adds an item to the current collection.
Public methodAdd(T)
Adds an item to the current collection. This collection is read-only so this throws an exception.
Public methodClear
Clears all items from the collection. This collection is read-only so this throws an exception.
Public methodContains(Object)
Determines whether the current collection contains a specific value.
Public methodContains(T)
Determines whether the current collection contains a specific value.
Public methodCopyTo(Array, Int32)
Copies the contents of the collection to the specified array starting at the specified index
Public methodCopyTo(T, Int32)
Copies the contents of the collection to the specified array starting at the specified index
Public methodGetEnumerator
Gets the enumerator for the collection
Public methodIndexOf(Object)
Determines the index of a specific item in the current instance.
Public methodIndexOf(T)
Determines the index of a specific item in the collection.
Public methodInsert(Int32, Object)
Insert a value into the collection with the specified index
Public methodInsert(Int32, T)
Inserts an item at the specified index. This collection is read-only so this throws an exception.
Public methodRemove(Object)
Removes the first occurrence of an item from the current collection.
Public methodRemove(T)
Remove the specified item. This collection is read-only so this throws an exception.
Public methodRemoveAt
Removes the item at the specified index. This collection is read-only so this throws an exception.
Top
See Also