如何从数组中删除指定的元素?
例如我添加了一个数组中的元素:
int[] array = new int[5]; for (int i = 0; i < array.Length; i++) { array[i] = i; }
如何从索引2中删除元素?
答案 0 :(得分:10)
使用内置的System.Collections.Generic.List<T>
类。如果你想删除元素,不要让你的生活更加艰难。
list.RemoveAt(2);
请记住,执行此操作的实际代码并不复杂。问题是,为什么不利用内置类?
public void RemoveAt(int index)
{
if (index >= this._size)
{
ThrowHelper.ThrowArgumentOutOfRangeException();
}
this._size--;
if (index < this._size)
{
Array.Copy(this._items, index + 1, this._items, index, this._size - index);
}
this._items[this._size] = default(T);
this._version++;
}