Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

Hashtable에서 값을 찾는 C# 프로그램

<시간/>

요소로 Hahtable 컬렉션을 설정합니다.

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