Collection<T>.IList.Add(Object) Метод
Определение
virtual int System.Collections.IList.Add(System::Object ^ value) = System::Collections::IList::Add;
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
Параметры
Возвращаемое значение
Позиция, на которую вставлен новый элемент.The position into which the new element was inserted.
Реализации
Исключения
value
имеет тип, который не может быть назначен IList.value
is of a type that is not assignable to the IList.
Комментарии
Этот метод является операцией O (1).This method is an O(1) operation.