ListSortDescriptionCollection.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);
void IList.Insert (int index, object? value);
abstract member System.Collections.IList.Insert : int * obj -> unit
override this.System.Collections.IList.Insert : int * obj -> unit
Sub Insert (index As Integer, value As Object) Implements IList.Insert

参数

index
Int32

要在集合中获取或设置的 ListSortDescription 的从零开始的索引。

value
Object

要插入到集合中的项。

实现

例外

在所有情况下。

注解

ListSortDescriptionCollection由于 类实现 System.Collections.IList 接口,因此它必须具有 IList.Insert 方法。 但是,由于 ListSortDescriptionCollection 类表示只读集合,因此将项插入集合是无效操作。

适用于