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

C#에서 대소문자 구분이 지정된 빈 HybridDictionary 만들기

<시간/>

대소문자를 구분하여 빈 HybridDictionary를 생성하기 위한 코드는 다음과 같습니다. -

예시

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      HybridDictionary myDict = new HybridDictionary();
      myDict.Add("A", "AB");
      myDict.Add("B", "BC");
      myDict.Add("C", "DE");
      myDict.Add("D", "FG");
      myDict.Add("e", "fg");
      Console.WriteLine("Key/Value pairs...");
      foreach(DictionaryEntry de in myDict)
         Console.WriteLine("Key = "+de.Key + ", Value = " + de.Value);
   }
}

출력

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

Key/Value pairs...
Key = A, Value = AB
Key = B, Value = BC
Key = C, Value = DE
Key = D, Value = FG
Key = e, Value = fg

예시

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

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      HybridDictionary myDict = new HybridDictionary();
      myDict.Add("A", "PQ");
      myDict.Add("B", "BC");
      myDict.Add("C", "tu");
      myDict.Add("D", "FG");
      myDict.Add("d", "gh");
      myDict.Add("e", "fg");
      Console.WriteLine("Key/Value pairs...");
      foreach(DictionaryEntry de in myDict)
         Console.WriteLine("Key = "+de.Key + ", Value = " + de.Value);
   }
}

출력

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

Key/Value pairs...
Key = A, Value = PQ
Key = B, Value = BC
Key = C, Value = tu
Key = D, Value = FG
Key = d, Value = gh
Key = e, Value = fg