LinkedListNode<T> Class
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Represents a node in a LinkedList<T>. This class cannot be inherited.
Assembly: System (in System.dll)
The LinkedListNode<T> type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | LinkedListNode<T> | Initializes a new instance of the LinkedListNode<T> class, containing the specified value. |
| Name | Description | |
|---|---|---|
![]() | List | Gets the LinkedList<T> that the LinkedListNode<T> belongs to. |
![]() | Next | Gets the next node in the LinkedList<T>. |
![]() | Previous | Gets the previous node in the LinkedList<T>. |
![]() | Value | Gets the value contained in the node. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
Each element of the LinkedList<T> collection is a LinkedListNode<T>. The LinkedListNode<T> contains a value, a reference to the LinkedList<T> that it belongs to, a reference to the next node, and a reference to the previous node.
Show:


