Click here to Skip to main content
Licence CPOL
First Posted 12 Feb 2009
Views 7,147
Downloads 50
Bookmarked 6 times

Collection Initializers and Query Expressions for Dictionary Objects

By | 12 Feb 2009 | Article
This article explains the syntax to use collection initializers and query expressions for Dictionary objects in C# 3.0.

Introduction

This article explains the syntax to use collection initializers and query expressions for Dictionary objects in C# 3.0.

Background 

I was learning the new features of C# 3.0. Though the use of collection initializers and query expressions are simple and straight forward in most cases, their use with Dictionary objects are not well documented. Hence, this article gives a beginner level approach to understanding collection initializers and query expressions with Dictionary objects.

Using the Code

In the below block of code, a Dictionary object (currencyCollection) has been defined. The Key holds an id, and the Value holds different currencies.

//Collection Initializers
Dictionary<int, string> currencyCollection = new Dictionary<int, string> {
                {1,"Indian Rupee"},
                {2, "United States Dollar"},
                {3, "Euro"},
                {4, "British Pound"},
                {5, "Australian Dollar"},
                {6, "Japanese Yen" },
                {7,"Indian Rupee"}
};

In the next step, I'm querying the currency "Indian Rupee" using query expressions. This expression will find out the entries for "Indian Rupee".

//Query Expressions
var query = from c in currencyCollection
            where (c.Value.Equals("Indian Rupee"))
            select c;

Now the variant query has the objects after filtering only "Indian Rupee". I use a simple foreach to display the results.

//Iterate through the dictionary and print
foreach (var ky in query)
    Console.WriteLine("{0}, {1}", ky.Key.ToString(), ky.Value); 

Points of Interest

Two things which I learnt were as follows:

  1. How to use collection initializers for Dictionary objects.
  2. How to use query expressions for Dictionary objects.

History

  • Created: 2009-Feb-11

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Arun George John

Team Leader

India India

Member

Arun George John is a technology enthusiast. He has been involved with .Net since 2002 and has worked on several challenging projects.
 
Apart from work, he is an amateur musician who can strike a note or two on a piano or an organ.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberQistoph23:17 12 Feb '09  
GeneralThanks Pinmemberjnovax16:50 12 Feb '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 12 Feb 2009
Article Copyright 2009 by Arun George John
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid