La propiedad Hashtable.Values se usa para obtener una ICollection que contiene los valores en Hashtable .
Sintaxis:
public virtual System.Collections.ICollection Values { get; }
Valor devuelto: esta propiedad devuelve una ICollection que contiene los valores de Hashtable.
Nota:
- El orden de los valores en ICollection no está especificado.
- Recuperar el valor de esta propiedad es una operación O(1).
Los siguientes programas ilustran el uso de la propiedad discutida anteriormente:
Ejemplo 1:
// C# code to get an ICollection containing // the values in the Hashtable. using System; using System.Collections; class GFG { // Driver code public static void Main() { // Creating a Hashtable Hashtable myTable = new Hashtable(); // Adding elements in Hashtable myTable.Add("g", "geeks"); myTable.Add("c", "c++"); myTable.Add("d", "data structures"); myTable.Add("q", "quiz"); // Get a collection of the values ICollection c = myTable.Values; // Displaying the contents foreach(string str in c) Console.WriteLine(str + myTable[str]); } }
Producción:
data structures c++ quiz geeks
Ejemplo 2:
// C# code to get an ICollection containing // the values in the Hashtable. using System; using System.Collections; class GFG { // Driver code public static void Main() { // Creating a Hashtable Hashtable myTable = new Hashtable(); // Adding elements in Hashtable myTable.Add("India", "Country"); myTable.Add("Chandigarh", "City"); myTable.Add("Mars", "Planet"); myTable.Add("China", "Country"); // Get a collection of the values ICollection c = myTable.Values; // Displaying the contents foreach(string str in c) Console.WriteLine(str + myTable[str]); } }
Producción:
City Country Country Planet
Referencia:
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA