C# | Obtener la lista de valores de un objeto SortedList

El método SortedList.GetValueList se usa para obtener la lista de claves en un objeto SortedList.

Sintaxis:

public virtual System.Collections.IList GetValueList ();

Valor devuelto: Devuelve un objeto IList que contiene los valores del objeto SortedList.

Los siguientes programas ilustran el uso del método mencionado anteriormente:

Ejemplo 1:

// C# code for getting the values
// in a SortedList object
using System;
using System.Collections;
  
class Geeks {
  
    // Main Method
    public static void Main(String[] args)
    {
  
        // Creating a SortedList of integers
        SortedList mylist = new SortedList();
  
        // Adding elements to SortedList
        mylist.Add("1", "C++");
        mylist.Add("2", "Java");
        mylist.Add("3", "DSA");
        mylist.Add("4", "Python");
        mylist.Add("5", "C#");
  
        // taking an IList and
        // using GetValueList method
        IList vlist = mylist.GetValueList();
  
        // Prints the list of keys
        Console.WriteLine("Value Stored in SortedList:");
  
        // will print the values in Sorted Order
        for (int i = 0; i < mylist.Count; i++)
            Console.WriteLine(vlist[i]);
    }
}
Producción:

Value Stored in SortedList:
C++
Java
DSA
Python
C#

Ejemplo 2:

// C# code for getting the values
// in a SortedList object
using System;
using System.Collections;
  
class Geeks {
  
    // Main Method
    public static void Main(String[] args)
    {
  
        // Creating a SortedList of integers
        SortedList mylist = new SortedList();
  
        // Adding elements to SortedList
        mylist.Add("First", "Ram");
        mylist.Add("Second", "Shyam");
        mylist.Add("Third", "Mohit");
        mylist.Add("Fourth", "Rohit");
        mylist.Add("Fifth", "Manish");
  
        // taking an IList and
        // using GetValueList method
        IList vlist = mylist.GetValueList();
  
        // Prints the list of keys
        Console.WriteLine("Value Stored in SortedList:");
  
        // will print the values in Sorted Order
        for (int i = 0; i < mylist.Count; i++)
            Console.WriteLine(vlist[i]);
    }
}
Producción:

Value Stored in SortedList:
Manish
Ram
Rohit
Shyam
Mohit

Nota:

  • El objeto IList devuelto es una vista de solo lectura de los valores del objeto SortedList. Las modificaciones realizadas en la SortedList subyacente se reflejan inmediatamente en la IList.
  • Los elementos de la IList devuelta se clasifican en el mismo orden que los valores de SortedList.
  • Este método es similar a la propiedad Values ​​pero devuelve un objeto IList en lugar de un objeto ICollection .
  • 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 *