ILinkedListNode<T> Interface |
Represents a node in a double-linked list.
Namespace: PostSharp.Collections
Assembly: PostSharp (in PostSharp.dll) Version: 6.6.14.0 (6.6.14.0)

The ILinkedListNode<T> type exposes the following members.

Name | Description | |
---|---|---|
![]() | Next |
Gets the next node in the list, or null if the current node is the last one in the list.
|
![]() | Previous |
Gets the previous node in the list, or null if the current node is the first one in the list.
|
![]() | Value |
Gets the value stored in the current node.
|
