尋找雜湊表中值的 C# 程式


用元素設定雜湊表集合。

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

假設你現在需要查詢一個值,然後使用 ContainsValue() 方法。

我們在此處查詢值“Chris” −

h.ContainsValue(“Chris”);

示例

 線上演示

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("Value Chris exists? "+h.ContainsValue("Chris"));
      Console.WriteLine("Value Tom exists? "+h.ContainsValue("Tom"));
   }
}

輸出

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

更新於: 2020 年 6 月 23 日

247 次瀏覽

開啟 職業生涯

完成課程並獲得證書

開始
廣告
© . All rights reserved.