Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

सी # में ListDictionary तक पहुंच सिंक्रनाइज़ कैसे करें?

ListDictionary तक पहुंच को सिंक्रनाइज़ करने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      ListDictionary dict = new ListDictionary();
      dict.Add("1", "SUV");
      dict.Add("2", "Sedan");
      dict.Add("3", "Utility Vehicle");
      dict.Add("4", "Compact Car");
      dict.Add("5", "SUV");
      dict.Add("6", "Sedan");
      dict.Add("7", "Utility Vehicle");
      dict.Add("8", "Compact Car");
      dict.Add("9", "Crossover");
      dict.Add("10", "Electric Car");
      Console.WriteLine("ListDictionary elements...");
      foreach(DictionaryEntry d in dict) {
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("\nIs the ListDictionary having fixed size? = "+dict.IsFixedSize);
      Console.WriteLine("If ListDictionary read-only? = "+dict.IsReadOnly);
      Console.WriteLine("Is ListDictionary synchronized = "+dict.IsSynchronized);
      Console.WriteLine("The ListDictionary has the key K? = "+dict.Contains("K"));
      Console.WriteLine("The ListDictionary has the key 9? = "+dict.Contains("9"));
      Console.WriteLine("\nSynchronize access...");
      lock(dict.SyncRoot) {
         foreach(DictionaryEntry d in dict) {
            Console.WriteLine(d.Key + " " + d.Value);
         }
      }
   }
}

आउटपुट

यह निम्नलिखित आउटपुट देगा -

ListDictionary elements...
1 SUV
2 Sedan
3 Utility Vehicle
4 Compact Car
5 SUV
6 Sedan
7 Utility Vehicle
8 Compact Car
9 Crossover
10 Electric Car
Is the ListDictionary having fixed size? = False
If ListDictionary read-only? = False
Is ListDictionary synchronized = False
The ListDictionary has the key K? = False
The ListDictionary has the key 9? = True

Synchronize access...
1 SUV
2 Sedan
3 Utility Vehicle
4 Compact Car
5 SUV
6 Sedan
7 Utility Vehicle
8 Compact Car
9 Crossover
10 Electric Car

उदाहरण

आइए एक और उदाहरण देखें -

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      ListDictionary dict = new ListDictionary();
      dict.Add("A", "Books");
      dict.Add("B", "Electronics");
      dict.Add("C", "Appliances");
      dict.Add("D", "Pet Supplies");
      dict.Add("E", "Clothing");
      dict.Add("F", "Footwear");
      Console.WriteLine("Synchronize access...");
      lock(dict.SyncRoot) {
         foreach(DictionaryEntry d in dict) {
            Console.WriteLine(d.Key + " " + d.Value);
         }
      }
   }
}

आउटपुट

यह निम्नलिखित आउटपुट देगा -

Synchronize access...
A Books
B Electronics
C Appliances
D Pet Supplies
E Clothing
F Footwear

  1. सी # में टुपल का दूसरा तत्व कैसे प्राप्त करें?

    Tuple का दूसरा तत्व प्राप्त करने के लिए, कोड इस प्रकार है - उदाहरण सिस्टम का उपयोग करना;पब्लिक क्लास डेमो {सार्वजनिक स्थैतिक शून्य मुख्य(स्ट्रिंग[] args) { var tuple1 =Tuple.Create(75, 200, 500, 700, 100, 1200, 1500); var tuple2 =Tuple.Create(75, 200, 500, 700, 100, 1200, 1500); Console.WriteLine (क

  1. सी # में टुपल का तीसरा तत्व कैसे प्राप्त करें?

    टुपल का तीसरा तत्व प्राप्त करने के लिए, कोड इस प्रकार है - उदाहरण using System; public class Demo {    public static void Main(String[] args){       var tuple1 = Tuple.Create(75, 200, 500, 700, 100, 1200, 1500);       var tuple2 = Tuple.Create(75, 200, 500, 70

  1. सी # में टुपल का छठा तत्व कैसे प्राप्त करें?

    Tuple का छठा तत्व प्राप्त करने के लिए, कोड इस प्रकार है - उदाहरण using System; public class Demo {    public static void Main(String[] args){       var tuple1 = Tuple.Create(75, 200, 500, 700, 100, 1200, 1500);       var tuple2 = Tuple.Create(75, 200, 500, 700