C# | Obtener los valores en un objeto SortedList – Part 1

La propiedad SortedList.Values ​​se usa para obtener los valores en un objeto SortedList.

Sintaxis:

public virtual System.Collections.ICollection Values { get; }

Valor de propiedad: un objeto ICollection que contiene los valores del objeto SortedList.

Los siguientes programas ilustran el uso de la propiedad discutida anteriormente:

Ejemplo 1:

// C# code to get an ICollection containing
// the values in the SortedList
using System;
using System.Collections;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a SortedList
        SortedList mylist = new SortedList();
  
        // Adding elements in SortedList
        mylist.Add("g", "geeks");
        mylist.Add("c", "c++");
        mylist.Add("d", "data structures");
        mylist.Add("q", "quiz");
  
        // Get a collection of the values
        ICollection c = mylist.Values;
  
        // Displaying the contents
        foreach(string str in c)
            Console.WriteLine(str + mylist[str]);
    }
}
Producción:

c++
data structures
geeks
quiz

Ejemplo 2:

// C# code to get an ICollection containing
// the values in the SortedList
using System;
using System.Collections;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a SortedList
        SortedList mylist = new SortedList();
  
        // Adding elements in SortedList
        mylist.Add("India", "Country");
        mylist.Add("Chandigarh", "City");
        mylist.Add("Mars", "Planet");
        mylist.Add("China", "Country");
  
        // Get a collection of the values
        ICollection c = mylist.Values;
  
        // Displaying the contents
        foreach(string str in c)
            Console.WriteLine(str + mylist[str]);
    }
}
Producción:

City
Country
Country
Planet

Nota:

  • El objeto ICollection es una vista de solo lectura de los valores del objeto SortedList. Las modificaciones realizadas en la SortedList subyacente se reflejan inmediatamente en la ICollection.
  • Los elementos de ICollection se clasifican en el mismo orden que los valores de SortedList.
  • Esta propiedad es similar al método GetValueList pero devuelve un objeto ICollection en lugar de un objeto IList.
  • Este método es una operación O(1).

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *