在雜湊表中查詢鍵值的 C# 程式


使用元素設定雜湊表集合。

Hashtable h = new Hashtable();
h.Add(1, "Jack");
h.Add(2, "Henry");
h.Add(3, "Ben");
h.Add(4, "Chris");

假設你現在需要查詢任何鍵值,那麼可以使用 Contains() 方法。我們在此處查詢鍵值 3 −

h.Contains(3);

以下為完整示例。

示例

 現場演示

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));
   }
}

輸出

Keys and Values list:
Key = 4, Value = Chris
Key = 3, Value = Ben
Key = 2, Value = Henry
Key = 1, Value = Jack
Key 3 exists? True

更新於: 23-Jun-2020

421 次瀏覽

開啟你的職業生涯

完成課程以獲得認證

開始學習
廣告
© . All rights reserved.