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

C#에서 SortedList 개체의 값 가져오기

<시간/>

SortedList 개체의 값을 가져오려면 코드는 다음과 같습니다. -

예시

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      SortedList list = new SortedList();
      list.Add(1, "One");
      list.Add(2, "Two");
      list.Add(3, "Three");
      list.Add(4, "Four");
      list.Add(5, "Five");
      ICollection col1 = list.Values;
      Console.WriteLine("Values...");
      foreach(string s in col1)
      Console.WriteLine(s);
      ICollection col2 = list.Keys;
      Console.WriteLine("Keys...");
      foreach(int s in col2)
         Console.WriteLine(s);
   }
}

출력

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

Values...
One
Two
Three
Four
Five
Keys...
1
2
3
4
5

예시

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

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      SortedList list = new SortedList();
      list.Add("A", "Jacob");
      list.Add("B", "Sam");
      list.Add("C", "Tom");
      list.Add("D", "John");
      list.Add("E", "Tim");
      list.Add("F", "Mark");
      list.Add("G", "Gary");
      list.Add("H", "Nathan");
      list.Add("I", "Shaun");
      list.Add("J", "David");
      ICollection col1 = list.Values;
      Console.WriteLine("Values...");
      foreach(string s in col1)
         Console.WriteLine(s);
      ICollection col2 = list.Keys;
      Console.WriteLine("\nKeys...");
      foreach(string s in col2)
         Console.WriteLine(s);
   }
}

출력

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

Values...
Jacob
Sam
Tom
John
Tim
Mark
Gary
Nathan
Shaun
David
Keys...
A
B
C
D
E
F
G
H
I
J