LinkedListNode<'T> Class
Represents a node in a LinkedList<'T>. This class cannot be inherited.
Assembly: System (in System.dll)
| Name | Description | |
|---|---|---|
![]() | LinkedListNode<'T>('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.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | 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.
The following code example creates a LinkedListNode<'T>, adds it to a LinkedList<'T>, and tracks the values of its properties as the LinkedList<'T> changes.
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

