List<T>.IList.Add(Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将某项添加到 IList 中。
virtual int System.Collections.IList.Add(System::Object ^ item) = System::Collections::IList::Add;
int IList.Add (object item);
abstract member System.Collections.IList.Add : obj -> int
override this.System.Collections.IList.Add : obj -> int
Function Add (item As Object) As Integer Implements IList.Add
参数
返回
新元素的插入位置。
实现
例外
item
是一个无法赋值给 IList 的类型。
注解
如果 Count 小于 Capacity,则此方法为 O (1) 运算。 如果需要增加容量以适应新元素,此方法将成为 O (n) 操作,其中 n 为 Count。