
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Getting Values in a SortedList Object in C#
To get the values in a SortedList object, the code is as follows −
Example
using System; using System.Collections; public class Demo { public static void Main(String[] args) { SortedList list = new SortedList(); list.Add(1, "One"); list.Add(2, "Two"); list.Add(3, "Three"); list.Add(4, "Four"); list.Add(5, "Five"); ICollection col1 = list.Values; Console.WriteLine("Values..."); foreach(string s in col1) Console.WriteLine(s); ICollection col2 = list.Keys; Console.WriteLine("Keys..."); foreach(int s in col2) Console.WriteLine(s); } }
Output
This will produce the following output −
Values... One Two Three Four Five Keys... 1 2 3 4 5
Example
Let us see another example −
using System; using System.Collections; public class Demo { public static void Main(String[] args) { SortedList list = new SortedList(); list.Add("A", "Jacob"); list.Add("B", "Sam"); list.Add("C", "Tom"); list.Add("D", "John"); list.Add("E", "Tim"); list.Add("F", "Mark"); list.Add("G", "Gary"); list.Add("H", "Nathan"); list.Add("I", "Shaun"); list.Add("J", "David"); ICollection col1 = list.Values; Console.WriteLine("Values..."); foreach(string s in col1) Console.WriteLine(s); ICollection col2 = list.Keys; Console.WriteLine("
Keys..."); foreach(string s in col2) Console.WriteLine(s); } }
Output
This will produce the following output −
Values... Jacob Sam Tom John Tim Mark Gary Nathan Shaun David Keys... A B C D E F G H I J
Advertisements