Array.IList.Insert(Int32, Object) Метод
Определение
virtual void System.Collections.IList.Insert(int index, System::Object ^ value) = System::Collections::IList::Insert;
void IList.Insert (int index, object value);
Sub Insert (index As Integer, value As Object) Implements IList.Insert
Параметры
- index
- Int32
Индекс, по которому требуется вставить элемент value
.The index at which value
should be inserted.
- value
- Object
Вставляемый объект.The object to insert.
Реализации
Исключения
Объект IList доступен только для чтения.The IList is read-only.
- или --or- IList имеет фиксированный размер.The IList has a fixed size.
Комментарии
Этот член представляет собой явную реализацию члена интерфейса.This member is an explicit interface member implementation. Он может использоваться, только если экземпляр Array приведен к типу интерфейса IList.It can be used only when the Array instance is cast to an IList interface.