Computer >> Máy Tính >  >> Lập trình >> C#

Nhận hoặc Đặt giá trị được liên kết với khóa được chỉ định trong Hashtable trong C #

Để lấy hoặc đặt giá trị được liên kết với khóa được chỉ định trong Hashtable, mã như sau -

Ví dụ

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      Hashtable hash = new Hashtable();
      hash.Add("1", "AB");
      hash.Add("2", "BC");
      hash.Add("3", "DE");
      hash.Add("4", "EF");
      hash.Add("5", "GH");
      hash.Add("6", "IJ");
      hash.Add("7", "KL");
      hash.Add("8", "MN");
      hash.Add("9", "OP");
      hash.Add("10", "QR");
      Console.WriteLine("Value at key 3 = "+hash["3"]);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Value at key 3 = DE

Ví dụ

Hãy để chúng tôi xem một ví dụ khác -

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      Hashtable hash = new Hashtable();
      hash.Add("1", "AB");
      hash.Add("2", "BC");
      hash.Add("3", "DE");
      hash.Add("4", "EF");
      hash.Add("5", "GH");
      hash.Add("6", "IJ");
      hash.Add("7", "KL");
      hash.Add("8", "MN");
      hash.Add("9", "OP");
      hash.Add("10", "QR");
      Console.WriteLine("Value at key 3 = "+hash["3"]);
      hash["3"] = "UV";
      Console.WriteLine("Value at key 3 (UPDATED) = "+hash["3"]);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Value at key 3 = DE
Value at key 3 (UPDATED) = UV