获取或设置与 C# 中 ListDictionary 中指定键相关联的值


要获取或设置与 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

更新时间: 05-12-2019

93 次浏览

启动你的 职业生涯

通过完成课程获得认证

开始学习
广告
© . All rights reserved.