ReadOnlySinglyLinkedList<T> Structure |
Represents a singly-linked list.
Namespace: PostSharp.Collections
Assembly: PostSharp (in PostSharp.dll) Version: 6.8.6.0 (6.8.6.0)

C#
public struct ReadOnlySinglyLinkedList<T> : IEnumerable<T>, IEnumerable
Type Parameters
- T
- Type of values stored in the list.
The ReadOnlySinglyLinkedList<T> type exposes the following members.

Name | Description | |
---|---|---|
![]() | FirstNode |
Gets the first node of the list.
|
![]() | IsEmpty |
Determines whether the list is empty.
|

Name | Description | |
---|---|---|
![]() | GetEnumerator |
Gets a value-type enumerator.
|

Name | Description | |
---|---|---|
![]() | ToAdvisableCollection<T> |
Converts an IEnumerable<T> into an AdvisableCollection<T>.
(Defined by Extensions.) |
![]() | ToAdvisableDictionary<T, TKey, TValue> |
Converts an IEnumerable<T> into a AdvisableDictionary<TKey, TValue> given a method returning the item key and a method returning the item value.
(Defined by Extensions.) |
![]() | ToAdvisableHashSet<T> |
Converts an IEnumerable<T> into an AdvisableHashSet<T>.
(Defined by Extensions.) |
