LinkedListNode(Of 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(Of T). This class cannot be inherited.
Assembly: System (in System.dll)
The LinkedListNode(Of T) type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | LinkedListNode(Of T) | Initializes a new instance of the LinkedListNode(Of T) class, containing the specified value. |
| Name | Description | |
|---|---|---|
![]() | List | Gets the LinkedList(Of T) that the LinkedListNode(Of T) belongs to. |
![]() | Next | Gets the next node in the LinkedList(Of T). |
![]() | Previous | Gets the previous node in the LinkedList(Of 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(Of T) collection is a LinkedListNode(Of T). The LinkedListNode(Of T) contains a value, a reference to the LinkedList(Of T) that it belongs to, a reference to the next node, and a reference to the previous node.


