ChunkList<T> Methods
A collection that improves performance in applications where you handle large and frequent data source updates.Name | Description |
---|---|
Add(T) | Adds the specified item to the collection. |
Clear() | Clears the collection. |
Contains(T) | Returns whether the collection contains the specified item. |
CopyTo(T[], Int32) | Copies items of the collection to the specified one-dimensional array. |
Equals(Object, Object) static | Determines whether the specified object instances are considered equal. Inherited from Object. |
Equals(Object) | Determines whether the specified object is equal to the current object. Inherited from Object. |
GetEnumerator() | Returns an IDictionaryEnumerator that can iterate through the hash table. |
GetHashCode() | Serves as the default hash function. Inherited from Object. |
GetType() | Gets the Type of the current instance. Inherited from Object. |
IndexOf(T) | Returns the specified object’s position within the chunk list. |
Insert(Int32, T) | Adds the specified item to the collection at the specified position. |
MemberwiseClone() protected | Creates a shallow copy of the current Object. Inherited from Object. |
ReferenceEquals(Object, Object) static | Determines whether the specified Object instances are the same instance. Inherited from Object. |
Remove(T) | Removes the specified item from the collection. |
RemoveAt(Int32) | Removes an item at the specified position from the collection. |
ToString() | Returns a string that represents the current object. Inherited from Object. |
See Also