[]
Represents a collection of items that can be accessed by index and provides read-only functionality.
public interface IItemCollection<out T> : IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable
Name | Description |
---|---|
T | The type of items contained in the collection. |