PostSharpAPI ReferencePost­Sharp.​CollectionsIRead­Only­Linked­List<T>
Open sandboxFocus

IReadOnlyLinkedList<T> Interface

Represents a double linked list.

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

Type of values stored in the link list.

Properties

Name Description
First

Gets the first node in the list, or null if the list is empty.

IsEmpty

Determines whether the list is empty.

Last

Gets the last node in the list, or null if the list is empty.

See Also