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 … Continue reading «C# | Obtener los valores en un objeto SortedList – Part 1»