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

C#에서 HybridDictionary의 키를 포함하는 ICollection 가져오기

<시간/>

HybridDictionary의 키를 포함하는 ICollection을 얻으려면 코드는 다음과 같습니다 -

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      HybridDictionary dict = new HybridDictionary();
      dict.Add("One", "Katie");
      dict.Add("Two", "Andy");
      dict.Add("Three", "Gary");
      dict.Add("Four", "Mark");
      dict.Add("Five", "Marie");
      dict.Add("Six", "Sam");
      dict.Add("Seven", "Harry");
      dict.Add("Eight", "Kevin");
      dict.Add("Nine", "Ryan");
      String[] strArr = new String[dict.Count];
      dict.Keys.CopyTo(strArr, 0);
      for (int i = 0; i < dict.Count; i++)
      Console.WriteLine(strArr[i]);
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Eight
Seven
Four
Three
One
Five
Six
Two
Nine

다른 예를 살펴보겠습니다 -

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      HybridDictionary dict = new HybridDictionary();
      dict.Add("1", "A");
      dict.Add("2", "B");
      dict.Add("3", "C");
      dict.Add("4", "D");
      dict.Add("5", "E");
      dict.Add("6", "F");
      String[] strArr = new String[dict.Count];
      dict.Keys.CopyTo(strArr, 0);
      for (int i = 0; i < dict.Count; i++)
         Console.WriteLine(strArr[i]);
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

1
2
3
4
5
6