El método Collection< T >.Add(T) se usa para agregar un objeto al final de Collection< T >.
Sintaxis:
public void Add (T item);
Aquí, item es el objeto que se agregará al final de Collection< T >. El valor puede ser nulo para los tipos de referencia.
A continuación se dan algunos ejemplos para entender la implementación de una mejor manera:
Ejemplo 1:
// C# code to add an object to // the end of the Collection using System; using System.Collections.Generic; using System.Collections.ObjectModel; class GFG { // Driver code public static void Main() { // Creating a collection of strings Collection<string> myColl = new Collection<string>(); myColl.Add("A"); myColl.Add("B"); myColl.Add("C"); myColl.Add("D"); myColl.Add("E"); // Displaying the number of elements in Collection Console.WriteLine("The number of elements in myColl are : " + myColl.Count); // Displaying the elements in Collection Console.WriteLine("The elements in myColl are : "); foreach(string str in myColl) { Console.WriteLine(str); } } }
Producción:
The number of elements in myColl are : 5 The elements in myColl are : A B C D E
Ejemplo 2:
// C# code to add an object to // the end of the Collection using System; using System.Collections.Generic; using System.Collections.ObjectModel; class GFG { // Driver code public static void Main() { // Creating a collection of ints Collection<int> myColl = new Collection<int>(); myColl.Add(2); myColl.Add(3); myColl.Add(4); myColl.Add(5); // Displaying the number of elements in Collection Console.WriteLine("The number of elements in myColl are : " + myColl.Count); // Displaying the elements in Collection Console.WriteLine("The elements in myColl are : "); foreach(int i in myColl) { Console.WriteLine(i); } } }
Producción:
The number of elements in myColl are : 4 The elements in myColl are : 2 3 4 5
Nota:
- Collection< T > acepta nulo como un valor válido para los tipos de referencia y permite elementos duplicados.
- Este método es una operación O(1) .
Referencia:
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA