PostSharpAPI ReferencePost­Sharp.​CollectionsILinked­List­Node<T>
Open sandboxFocus

ILinkedListNode<T> Interface

Represents a node in a double-linked list.

Namespace: PostSharp.Collections
Assembly: PostSharp.dll
Syntax
[InternalImplement]
public interface ILinkedListNode<out T>
Type Parameters
Name Description
T

Type of values stored in the list.

Properties

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.