ArrayStore<TValue> class ArrayStore<TValue> : IEnumerable<TValue>, IEnumerable Documentation Code public static readonly ArrayStore<TValue> Empty public int Length public TValue this[int i] { get; } public ArrayStore() public ArrayStore(TValue[] initial) public ArrayStore<TValue> Add(TValue value) public ArrayStore<TValue> AddRange(TValue[] items) public TValue Get(int index) public IEnumerator<TValue> GetEnumerator()