
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
Get an ICollection containing the values in OrderedDictionary in C#
To get an ICollection containing the values in OrderedDictionary, the code is as follows −
Example
using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ OrderedDictionary dict = new OrderedDictionary(); dict.Add("1", "One"); dict.Add("2", "Two"); dict.Add("3", "Three"); dict.Add("4", "Four"); dict.Add("5", "Five"); dict.Add("6", "Six"); dict.Add("7", "Seven"); dict.Add("8", "Eight"); ICollection col = dict.Values; String[] strVal = new String[dict.Count]; col.CopyTo(strVal, 0); Console.WriteLine("Displaying the values..."); for (int i = 0; i < dict.Count; i++) { Console.WriteLine(strVal[i]); } } }
Output
This will produce the following output −
Displaying the values... One Two Three Four Five Six Seven Eight
Example
Let us see another example −
using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ OrderedDictionary dict = new OrderedDictionary(); dict.Add("One", "John"); dict.Add("Two", "Tim"); dict.Add("Three", "Katie"); dict.Add("Four", "Andy"); dict.Add("Five", "Gary"); dict.Add("Six", "Amy"); ICollection col = dict.Values; String[] strVal = new String[dict.Count]; col.CopyTo(strVal, 0); Console.WriteLine("Displaying the Values..."); for (int i = 0; i < dict.Count; i++) { Console.WriteLine(strVal[i]); } } }
Output
This will produce the following output −
Displaying the Values... John Tim Katie Andy Gary Amy
- Related Articles
- Get an ICollection containing keys in OrderedDictionary in C#
- Get an ICollection containing the values in ListDictionary in C#
- Get an ICollection containing the values in HybridDictionary in C#
- Get an ICollection containing the keys in HybridDictionary in C#
- Get an ICollection containing the keys in ListDictionary in C#
- Get an ICollection containing the keys in the Hashtable C#
- Gets an ICollection containing the values in the Hashtable in C#
- Get an IDictionaryEnumerator object in OrderedDictionary in C#
- Get the number of key/values pairs contained in OrderedDictionary in C#
- Get a read-only copy of the OrderedDictionary in C#
- How to create an OrderedDictionary in C#?
- OrderedDictionary Class in C#
- What does the interface ICollection do in C#
- Remove all elements from OrderedDictionary in C#
- Remove the entry at specified index from OrderedDictionary in C#

Advertisements