C# Dictionary InitializerC# 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 1Output: { 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 2Output: Key = 1 Value = {101, Rahul Kumar, [email protected]} Key = 2 Value = {102, Peter, [email protected]} Key = 3 Value = {103, Irfan, [email protected]} Next TopicC# Pattern Matching |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India