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

C#의 ContainsKey() 메서드

<시간/>

Hashtable 컬렉션을 설정하고 여기에 몇 가지 요소를 추가하세요.

Hashtable h = new Hashtable();
h.Add(1, "Sam");
h.Add(2, "Jack");
h.Add(3, "Andy");
h.Add(4, "Katie");
h.Add(5, "Beth");
h.Add(6, "Benjamin");

Hashtable에 키가 있는지 확인하려면 ContainsKey() 메서드를 사용합니다.

키 3을 확인합시다. 키가 발견되면 True를 반환합니다.

h.ContainsKey(3));

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      Hashtable h = new Hashtable();
      h.Add(1, "Sam");
      h.Add(2, "Jack");
      h.Add(3, "Andy");
      h.Add(4, "Katie");
      h.Add(5, "Beth");
      h.Add(6, "Benjamin");
      Console.WriteLine("Keys and Values list:");
      foreach (var key in h.Keys ) {
         Console.WriteLine("Key = {0}, Value = {1}",key , h[key]);
      }
      Console.WriteLine("Does the specified key exist? "+h.ContainsKey(3));
   }
}

출력

Keys and Values list:
Key = 6, Value = Benjamin
Key = 5, Value = Beth
Key = 4, Value = Katie
Key = 3, Value = Andy
Key = 2, Value = Jack
Key = 1, Value = Sam
Does the specified key exist? True