コード例 #1
0
        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]--;
        }
コード例 #2
0
 public void RemoveAt(int index)
 {
     source.RemoveAt(index);
 }