कुछ तत्वों के साथ हमारा शब्दकोश निम्नलिखित है -
Dictionary<int, string> d = new Dictionary<int, string>() { {1,"Electronics"}, {2, "Clothing"}, {3,"Toys"}, {4,"Footwear"}, {5, "Accessories"} };
अब पहला तत्व प्रदर्शित करने के लिए, कुंजी को इस तरह सेट करें।
d[1];
उपरोक्त पहला तत्व प्रदर्शित करता है।
उदाहरण
using System; using System.Collections.Generic; public class Program { public static void Main() { Dictionary<int, string> d = new Dictionary<int, string>() { {1,"Electronics"}, {2, "Clothing"}, {3,"Toys"}, {4,"Footwear"}, {5, "Accessories"} }; foreach (KeyValuePair<int, string> ele in d) { Console.WriteLine("Key = {0}, Value = {1}", ele.Key, ele.Value); } Console.WriteLine("First element: "+d[1]); } }
आउटपुट
Key = 1, Value = Electronics Key = 2, Value = Clothing Key = 3, Value = Toys Key = 4, Value = Footwear Key = 5, Value = Accessories First element: Electronics