|
Name |
Description |
|
Add |
Adds an object to the end of the Collection. (inherited from Collection) |
|
AddRange
|
Adds range of members to the end of the set. Duplicate members will not get added, nor will yield an exception. |
|
Clear |
Removes all elements from the Collection. (inherited from Collection) |
|
Contains |
Overloaded. Determines whether an element is in the Collection. (inherited from KeyedCollection) |
|
CopyTo |
Copies the entire Collection to a compatible one-dimensional Array, starting at the specified index of the target array. (inherited from Collection) |
|
Equals |
Determines whether the specified Object is equal to the current Object. (inherited from Object) |
|
GetEnumerator |
Returns an enumerator that iterates through the Collection. (inherited from Collection) |
|
GetHashCode |
Serves as a hash function for a particular type. (inherited from Object) |
|
GetType |
Gets the Type of the current instance. (inherited from Object) |
|
GetTypeName
|
Returns String representation of the underlying type. |
|
IndexOf |
Searches for the specified object and returns the zero-based index of the first occurrence within the entire Collection. (inherited from Collection) |
|
Insert |
Inserts an element into the Collection at the specified index. (inherited from Collection) |
|
IsValid
|
Returns True if object instance is considered valid, otherwise returns False . |
|
Merge
|
Overloaded. Merges specified object instance data with caller object data and stores result into the caller object. Provides optional resolution for merging caller and callee values. |
|
Remove |
Overloaded. Removes the first occurrence of a specific object from the Collection. (inherited from KeyedCollection) |
|
RemoveAt |
Removes the element at the specified index of the Collection. (inherited from Collection) |
|
Sort
|
Overloaded. Sorts members of the entire collection using default comparer. |
|
ToArray
|
Converts collection to array. If collection is empty, returns an empty array. |
|
ToList
|
Converts collection to list. If collection is empty, returns an empty list. |
|
ToString |
Returns a String that represents the current Object. (inherited from Object) |
|
TryGetItem
|
Overloaded. Returns True if specified member name is found in collection, otherwise returns False . If True , also returns found member by reference. |