Click or drag to resize

ExtendedCollectionT Class

Provides additional functionality for CollectionT.
Inheritance Hierarchy
SystemObject
  System.Collections.ObjectModelCollectionT
    Ookii.JumboExtendedCollectionT

Namespace: Ookii.Jumbo
Assembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public class ExtendedCollection<T> : Collection<T>

Type Parameters

T
The type of the items in the collection

The ExtendedCollectionT type exposes the following members.

Constructors
 NameDescription
Public methodExtendedCollectionT Initializes a new instance of the ExtendedCollectionT class.
Top
Properties
 NameDescription
Public propertyCountGets the number of elements actually contained in the CollectionT.
(Inherited from CollectionT)
Public propertyItemGets or sets the element at the specified index.
(Inherited from CollectionT)
Protected propertyItemsGets a IListT wrapper around the CollectionT.
(Inherited from CollectionT)
Top
Methods
 NameDescription
Public methodAddAdds an object to the end of the CollectionT.
(Inherited from CollectionT)
Public methodAddRange Adds a range of elements to the collection.
Public methodClearRemoves all elements from the CollectionT.
(Inherited from CollectionT)
Protected methodClearItemsRemoves all elements from the CollectionT.
(Inherited from CollectionT)
Public methodContainsDetermines whether an element is in the CollectionT.
(Inherited from CollectionT)
Public methodCopyToCopies the entire CollectionT to a compatible one-dimensional Array, starting at the specified index of the target array.
(Inherited from CollectionT)
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetEnumeratorReturns an enumerator that iterates through the CollectionT.
(Inherited from CollectionT)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodIndexOfSearches for the specified object and returns the zero-based index of the first occurrence within the entire CollectionT.
(Inherited from CollectionT)
Public methodInsertInserts an element into the CollectionT at the specified index.
(Inherited from CollectionT)
Protected methodInsertItemInserts an element into the CollectionT at the specified index.
(Inherited from CollectionT)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodRemoveRemoves the first occurrence of a specific object from the CollectionT.
(Inherited from CollectionT)
Public methodRemoveAtRemoves the element at the specified index of the CollectionT.
(Inherited from CollectionT)
Protected methodRemoveItemRemoves the element at the specified index of the CollectionT.
(Inherited from CollectionT)
Protected methodSetItemReplaces the element at the specified index.
(Inherited from CollectionT)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
See Also