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

รับหรือตั้งค่าใน HybridDictionary ด้วยคีย์ที่ระบุใน C #


ในการรับหรือตั้งค่าใน HybridDictionary ด้วยคีย์ที่ระบุ โค้ดจะเป็นดังนี้ -

ตัวอย่าง

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      HybridDictionary myDict = new HybridDictionary();
      myDict.Add("1", "Tablet");
      myDict.Add("2", "Desktop");
      myDict.Add("3", "Speakers");
      myDict.Add("4", "Laptop");
      myDict.Add("5", "Notebook");
      myDict.Add("6", "Ultrabook");
      myDict.Add("7", "HDD");
      myDict.Add("8", "SDD");
      Console.WriteLine("Value at key 5 = "+myDict["5"]);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Value at key 5 = Notebook

ตัวอย่าง

เรามาดูตัวอย่างกัน −

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      HybridDictionary myDict = new HybridDictionary();
      myDict.Add("1", "Tablet");
      myDict.Add("2", "Desktop");
      myDict.Add("3", "Speakers");
      myDict.Add("4", "Laptop");
      myDict.Add("5", "Notebook");
      myDict.Add("6", "Ultrabook");
      myDict.Add("7", "HDD");
      myDict.Add("8", "SDD");
      Console.WriteLine("Value at key 5 = "+myDict["5"]);
      myDict["5"] = "Smart Watches";
      Console.WriteLine("Value at key 5 [UPDATED] = "+myDict["5"]);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Value at key 5 = Notebook
Value at key 5 [UPDATED] = Smart Watches

ตัวอย่าง

เรามาดูตัวอย่างกัน −

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      Queue queue = new Queue();
      queue.Enqueue(100);
      queue.Enqueue(200);
      queue.Enqueue(300);
      queue.Enqueue(400);
      queue.Enqueue(500);
      Console.WriteLine("Queue...");
      foreach(Object ob in queue) {
         Console.WriteLine(ob);
      }
      Console.WriteLine("Count of elements = "+queue.Count);
      Console.WriteLine("Synchronize access...");
      lock(queue.SyncRoot) {
         foreach(Object ob in queue) {
            Console.WriteLine(ob);
         }
      }
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Queue...
100
200
300
400
500
Count of elements = 5
Synchronize access...
100
200
300
400
500