ListDictionary में निर्दिष्ट कुंजी से संबद्ध मान प्राप्त करने या सेट करने के लिए, कोड इस प्रकार है -
उदाहरण
using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main() { ListDictionary dict = new ListDictionary(); dict.Add("A", "Books"); dict.Add("B", "Electronics"); dict.Add("C", "Appliances"); dict.Add("D", "Pet Supplies"); dict.Add("E", "Clothing"); dict.Add("F", "Footwear"); Console.WriteLine("Value associated with key C = "+dict["C"]); } }
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Value associated with key C = Appliances
उदाहरण
आइए एक और उदाहरण देखें -
using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main() { ListDictionary dict = new ListDictionary(); dict.Add("A", "Books"); dict.Add("B", "Electronics"); dict.Add("C", "Appliances"); dict.Add("D", "Pet Supplies"); dict.Add("E", "Clothing"); dict.Add("F", "Footwear"); Console.WriteLine("Value associated with key C = "+dict["C"]); dict["C"] = "HDD"; Console.WriteLine("Value associated with key C [Updated] = "+dict["C"]); } }
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Value associated with key C = Appliances Value associated with key C [Updated] = HDD