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

C#의 StringDictionary에 키와 값 추가

<시간/>

StringDictionary에 키와 값을 추가하기 위한 코드는 다음과 같습니다 -

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringDictionary strDict = new StringDictionary();
      strDict.Add("A", "John");
      strDict.Add("B", "Andy");
      strDict.Add("C", "Tim");
      strDict.Add("D", "Ryan");
      strDict.Add("E", "Kevin");
      strDict.Add("F", "Katie");
      strDict.Add("G", "Brad");
      Console.WriteLine("StringDictionary elements...");
      foreach(DictionaryEntry de in strDict) {
         Console.WriteLine(de.Key + " " + de.Value);
      }
   }
}

출력

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

StringDictionary elements...
a John
b Andy
c Tim
d Ryan
e Kevin
f Katie
g Brad

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

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringDictionary strDict = new StringDictionary();
      strDict.Add("1", "Electric Cars");
      strDict.Add("2", "SUV");
      strDict.Add("3", "AUV");
      Console.WriteLine("StringDictionary elements...");
      foreach(DictionaryEntry de in strDict) {
         Console.WriteLine(de.Key + " " + de.Value);
      }
   }
}

출력

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

StringDictionary elements...
1 Electric Cars
2 SUV
3 AUV