[]
Defines methods to access the first and last items in a collection.
public interface IContentList<T> : IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable
T
The type of items in the collection.
Gets the first item in the collection.
T First { get; }
Gets the last item in the collection.
T Last { get; }