ISinglyLinkedListNode<T> Interface |
Represents a node in a singly linked list.
Namespace: PostSharp.Collections
Assembly: PostSharp (in PostSharp.dll) Version: 5.0.55.0 (5.0.55.0)

C#
public interface ISinglyLinkedListNode<out T>
Type Parameters
- T
- Type of values stored in the list.
The ISinglyLinkedListNode<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.
|
![]() | Value |
Gets the value stored in the current node.
|
