List<T>.IList.Add(Object) Método

Definición

Agrega un elemento a 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

Parámetros

item
Object

Object que se va a agregar a IList.

Devoluciones

Posición en la que se insertó el nuevo elemento.

Implementaciones

Excepciones

item es de un tipo que no se puede asignar a IList.

Comentarios

Si Count es menor que Capacity, este método es una operación O(1). Si es necesario aumentar la capacidad para acomodar el nuevo elemento, este método se convierte en una operación O(n), donde n es Count.

Se aplica a