[]
Defines methods to access the first and last items in a collection.
public interface IContentList<T> : IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable
Public Interface IContentList(Of T)
Inherits IReadOnlyList(Of T), IReadOnlyCollection(Of T), IEnumerable(Of T), IEnumerable
| Name | Description |
|---|---|
| T | The type of items in the collection. |
| Name | Description |
|---|---|
| First | Gets the first item in the collection. |
| Last | Gets the last item in the collection. |