LinkedListNode<T> Class
Represents a node in a LinkedList<T>. This class cannot be inherited.
Namespace: System.Collections.Generic
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.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.




