ListSortDescriptionCollection.IList.Add(Object) 方法

定义

向集合中添加一项。

 virtual int System.Collections.IList.Add(System::Object ^ value) = System::Collections::IList::Add;
int IList.Add (object value);
int IList.Add (object? value);
abstract member System.Collections.IList.Add : obj -> int
override this.System.Collections.IList.Add : obj -> int
Function Add (value As Object) As Integer Implements IList.Add

参数

value
Object

要添加到集合的项。

返回

新元素的插入位置。

实现

例外

在所有情况下。

注解

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

适用于