Represents a node in a singly linked list.
Namespace: PostSharp.Collections
Assembly: PostSharp.dll
Syntax
[InternalImplement]
public interface ISinglyLinkedListNode<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 |
Value | Gets the value stored in the current node. |