Click or drag to resize

LinkedListNode<T> Class

A linked list node.
Inheritance Hierarchy
System.Object
  FM.IceLink.LinkedListNode<T>

Namespace:  FM.IceLink
Assembly:  FM.IceLink (in FM.IceLink.dll) Version: 3.2.2.607 (3.2.2.607)

The LinkedListNode<T> type exposes the following members.

Constructors
  NameDescription
Public methodLinkedListNode<T>
Initializes a new instance of the LinkedListNode<T> class.
Top
Properties
  NameDescription
Public propertyNext
Gets the next node. Will be null if last.
Public propertyPrevious
Gets the previous node. Null if first.
Public propertyValue
Gets the item in the linked list.
Top
Methods
  NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
See Also