List<T>.IList.Add(Object) 方法

定義

將項目加入至 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
Object

要加入至 ObjectIList

傳回

插入新項目的位置。

實作

例外狀況

item 所屬類型無法指派給 IList

備註

如果 Count 小於 Capacity,則這個方法是 O (1) 作業。 如果需要增加容量以容納新的元素,這個方法會變成 O (n) 作業,其中 nCount

適用於