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

Hashtable에서 키를 찾는 C# 프로그램

<시간/>

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

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