LinkedList Methods
.NET Framework 2.0
(see also
Protected Methods
)
Top
| Name | Description | |
|---|---|---|
| AddAfter | Overloaded. Adds a new node or value after an existing node in the LinkedList. |
| AddBefore | Overloaded. Adds a new node or value before an existing node in the LinkedList. |
| AddFirst | Overloaded. Adds a new node or value at the start of the LinkedList. |
| AddLast | Overloaded. Adds a new node or value at the end of the LinkedList. |
| Clear | Removes all nodes from the LinkedList. |
| Contains | Determines whether a value is in the LinkedList. |
| CopyTo | Copies the entire LinkedList to a compatible one-dimensional Array, starting at the specified index of the target array. |
| Equals | Overloaded. Determines whether two Object instances are equal. (inherited from Object) |
| Find | Finds the first node that contains the specified value. |
| FindLast | Finds the last node that contains the specified value. |
| GetEnumerator | Returns an enumerator that iterates through the LinkedList. |
| GetHashCode | Serves as a hash function for a particular type. (inherited from Object) |
| GetObjectData | Implements the System.Runtime.Serialization.ISerializable interface and returns the data needed to serialize the LinkedList instance. |
| GetType | Gets the Type of the current instance. (inherited from Object) |
| OnDeserialization | Implements the System.Runtime.Serialization.ISerializable interface and raises the deserialization event when the deserialization is complete. |
| ReferenceEquals | Determines whether the specified Object instances are the same instance. (inherited from Object) |
| Remove | Overloaded. Removes the first occurrence of a node or value from the LinkedList. |
| RemoveFirst | Removes the node at the start of the LinkedList. |
| RemoveLast | Removes the node at the end of the LinkedList. |
| ToString | Returns a String that represents the current Object. (inherited from Object) |
| Name | Description | |
|---|---|---|
| Finalize | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (inherited from Object) |
| MemberwiseClone | Creates a shallow copy of the current Object. (inherited from Object) |
| Name | Description | |
|---|---|---|
| System.Collections.Generic.ICollection<T>.Add | Adds an item at the end of the ICollection. |
| System.Collections.Generic.IEnumerable<T>.GetEnumerator | Returns an enumerator that iterates through a collection. |
| System.Collections.ICollection.CopyTo | Copies the elements of the ICollection to an Array, starting at a particular Array index. |
| System.Collections.IEnumerable.GetEnumerator | Returns an enumerator that iterates through the linked list as a collection. |