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

C#에서 SortedList 개체에 대한 동기화된 래퍼 만들기

<시간/>

SortedList 개체에 대한 동기화된 래퍼를 만들려면 코드는 다음과 같습니다. -

예시

using System;
using System.Collections;
public class Demo {
   public static void Main(){
      SortedList sortedList = new SortedList();
      sortedList.Add("1", "Tom");
      sortedList.Add("2", "Ryan");
      sortedList.Add("3", "Nathan");
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in sortedList){
         Console.WriteLine("Key = "+d.Key + ", Value = " + d.Value);
      }
      SortedList sortedList2 = SortedList.Synchronized(sortedList);
      Console.WriteLine("SortedList is synchronized? = "+sortedList2.IsSynchronized);
   }
}

출력

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

SortedList elements...
Key = 1, Value = Tom
Key = 2, Value = Ryan
Key = 3, Value = Nathan
SortedList is synchronized? = True

예시

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

using System;
using System.Collections;
public class Demo {
   public static void Main(){
      SortedList sortedList = new SortedList();
      sortedList.Add("1", "AB");
      sortedList.Add("2", "CD");
      sortedList.Add("3", "EF");
      sortedList.Add("4", "GH");
      sortedList.Add("5", "IJ");
      sortedList.Add("6", "KL");
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in sortedList){
         Console.WriteLine("Key = "+d.Key + ", Value = " + d.Value);
      }
      Console.WriteLine("SortedList is synchronized? = "+sortedList.IsSynchronized);
   }
}

출력

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

SortedList elements...
Key = 1, Value = AB
Key = 2, Value = CD
Key = 3, Value = EF
Key = 4, Value = GH
Key = 5, Value = IJ
Key = 6, Value = KL
SortedList is synchronized? = False