Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

การสร้าง HybridDictionary ที่ว่างเปล่าพร้อมตัวพิมพ์เล็กและตัวพิมพ์เล็กที่ระบุใน C #


ในการสร้าง 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