Javatpoint Logo
Javatpoint Logo

C# Dictionary Initializer

C# Dictionary initializer is a feature which is used to initialize dictionary elements. Dictionary is a collection of elements. It stores elements in key and value pair.

Dictionary initializer uses curly braces ({}) to enclose the key and value pair.

Let's see an example, in which we are initializing value for each key.

C# Dictionary Initializer Example 1

Output:

{ Key = 1 Value = Irfan }
{ Key = 2 Value = Ravi }
{ Key = 3 Value = Peter }

In this example, we are storing student data into the dictionary. We are using dictionary initializer to store student data. See, the following example.

C# Dictionary Initializer Example 2

Output:

Key = 1 Value = {101, Rahul Kumar, [email protected]}
Key = 2 Value = {102, Peter, [email protected]}
Key = 3 Value = {103, Irfan, [email protected]}






Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA