|
Name |
Description |
|
Add |
Adds an object to the end of the List. (inherited from List) |
|
AddRange |
Adds the elements of the specified collection to the end of the List. (inherited from List) |
|
AsReadOnly |
Returns a read-only IList wrapper for the current collection. (inherited from List) |
|
BinarySearch |
Overloaded. Searches the entire sorted List for an element using the default comparer and returns the zero-based index of the element. (inherited from List) |
|
Clear |
Removes all elements from the List. (inherited from List) |
|
Contains |
Determines whether an element is in the List. (inherited from List) |
|
ConvertAll |
Converts the elements in the current List to another type, and returns a list containing the converted elements. (inherited from List) |
|
CopyTo |
Overloaded. Copies the entire List to a compatible one-dimensional array, starting at the beginning of the target array. (inherited from List) |
|
Equals |
Determines whether the specified Object is equal to the current Object. (inherited from Object) |
|
Exists |
Determines whether the List contains elements that match the conditions defined by the specified predicate. (inherited from List) |
|
Find |
Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire List. (inherited from List) |
|
FindAll |
Retrieves all the elements that match the conditions defined by the specified predicate. (inherited from List) |
|
FindIndex |
Overloaded. Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the List that starts at the specified index and contains the specified number of elements. (inherited from List) |
|
FindLast |
Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire List. (inherited from List) |
|
FindLastIndex |
Overloaded. Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the List that contains the specified number of elements and ends at the specified index. (inherited from List) |
|
ForEach |
Performs the specified action on each element of the List. (inherited from List) |
|
GetEnumerator |
Returns an enumerator that iterates through the List. (inherited from List) |
|
GetHashCode |
Serves as a hash function for a particular type. (inherited from Object) |
|
GetRange |
Creates a shallow copy of a range of elements in the source List. (inherited from List) |
|
GetType |
Gets the Type of the current instance. (inherited from Object) |
|
IndexOf |
Overloaded. Searches for the specified object and returns the zero-based index of the first occurrence within the entire List. (inherited from List) |
|
Insert |
Inserts an element into the List at the specified index. (inherited from List) |
|
InsertRange |
Inserts the elements of a collection into the List at the specified index. (inherited from List) |
|
IsValid
|
Returns True if object instance is considered valid, otherwise returns False . |
|
LastIndexOf |
Overloaded. Searches for the specified object and returns the zero-based index of the last occurrence within the entire List. (inherited from List) |
|
Remove |
Removes the first occurrence of a specific object from the List. (inherited from List) |
|
RemoveAll |
Removes the all the elements that match the conditions defined by the specified predicate. (inherited from List) |
|
RemoveAt |
Removes the element at the specified index of the List. (inherited from List) |
|
RemoveRange |
Removes a range of elements from the List. (inherited from List) |
|
Reverse |
Overloaded. Reverses the order of the elements in the entire List. (inherited from List) |
|
Sort |
Overloaded. Sorts the elements in the entire List using the default comparer. (inherited from List) |
|
ToArray |
Copies the elements of the List to a new array. (inherited from List) |
|
ToString |
Returns a String that represents the current Object. (inherited from Object) |
|
TrimExcess |
Sets the capacity to the actual number of elements in the List, if that number is less than a threshold value. (inherited from List) |
|
TrueForAll |
Determines whether every element in the List matches the conditions defined by the specified predicate. (inherited from List) |
|
TryGetItem
|
Returns True if collection member with specified hash code exists, otherwise returns False . If True , also returns member instance. |