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

C#에서 Hashtable 클래스의 Keys 속성은 무엇입니까?

<시간/>

Hashtable의 키를 포함하는 ICollection을 가져옵니다. 컬렉션의 모든 키를 표시합니다. 아래 코드에서 모든 키를 가져오기 위해 루프를 사용하여 컬렉션을 반복합니다.

foreach (int k in h.Keys) {
   Console.WriteLine(k);
}

위의 코드는 다음 코드와 같이 모든 키를 표시합니다. -

using System;
using System.Collections;
class Program {
   static void Main() {
      Hashtable h = new Hashtable();
      h.Add(1, "India");
      h.Add(2, "US");
      h.Add(3, "UK");
      h.Add(4, "Australia");
      h.Add(5, "Netherland");
      foreach (int k in h.Keys) {
         Console.WriteLine(k);
      }
   }
}

출력

5
4
3
2
1