Computer >> Máy Tính >  >> Lập trình >> C#

Nhận hoặc đặt giá trị trong HybridDictionary với khóa được chỉ định trong C #

Để lấy hoặc đặt giá trị trong HybridDictionary với khóa được chỉ định, mã như sau -

Ví dụ

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"]);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Value at key 5 = Notebook

Ví dụ

Hãy để chúng tôi xem một ví dụ khác -

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"]);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

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

Ví dụ

Hãy để chúng tôi xem một ví dụ khác -

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);
         }
      }
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

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