public override void RemoveAt(int dimension, int index) { if (Rank != 1) { throw new NotImplementedException("Should redirect call to parent with proper index"); } parent.RemoveAt(0, GetIndexInParent(new[] { index })[0]); OffsetEnd[0]--; }
public void RemoveAt(int index) { source.RemoveAt(index); }