Đặt bộ sưu tập Hashtable với các phần tử.
Hashtable h = new Hashtable(); h.Add(1, "Jack"); h.Add(2, "Henry"); h.Add(3, "Ben"); h.Add(4, "Chris");
Giả sử bây giờ bạn cần tìm bất kỳ khóa nào, sau đó sử dụng phương thức Contains (). Chúng tôi đang tìm chìa khóa 3 ở đây -
h.Contains(3);
Sau đây là ví dụ đầy đủ.
Ví dụ
using System; using System.Collections; public class Demo { public static void Main() { Hashtable h = new Hashtable(); h.Add(1, "Jack"); h.Add(2, "Henry"); h.Add(3, "Ben"); h.Add(4, "Chris"); Console.WriteLine("Keys and Values list:"); foreach (var key in h.Keys ) { Console.WriteLine("Key = {0}, Value = {1}",key , h[key]); } Console.WriteLine("Key 3 exists? "+h.Contains(3)); } }
Đầu ra
Keys and Values list: Key = 4, Value = Chris Key = 3, Value = Ben Key = 2, Value = Henry Key = 1, Value = Jack Key 3 exists? True