C#
 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", "Books");
      strDict.Add("B", "Electronics");
      strDict.Add("C", "Appliances");
      strDict.Add("D", "Pet Supplies");
      strDict.Add("E", "Clothing");
      strDict.Add("F", "Footwear");
      Console.WriteLine("StringDictionary key-value pairs...");
      foreach(DictionaryEntry de in strDict) {
         Console.WriteLine(de.Key + " " + de.Value);
      }
      Console.WriteLine("Value associated with key D = "+strDict["D"]);
      Console.WriteLine("Value associated with key F = "+strDict["F"]);
      Console.WriteLine("\nSynchronize access..");
      lock(strDict.SyncRoot) {
         foreach(DictionaryEntry de in strDict) {
            Console.WriteLine(de.Key + " " + de.Value);
         }
      }
   }
}

出力

これにより、次の出力が生成されます-

StringDictionary key-value pairs...
a Books
b Electronics
c Appliances
d Pet Supplies
e Clothing
f Footwear
Value associated with key D = Pet Supplies
Value associated with key F = Footwear
Synchronize access..
a Books
b Electronics
c Appliances
d Pet Supplies
e Clothing
f Footwear

別の例を見てみましょう-

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);
      }
      Console.WriteLine("\nSynchronize access..");
      lock(strDict.SyncRoot) {
         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

Synchronize access..
a John
b Andy
c Tim
d Ryan
e Kevin
f Katie
g Brad

  1. C#のStringDictionaryでキーのコレクションを取得します

    StringDictionaryでキーのコレクションを取得するには、コードは次のとおりです- 例 using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       StringDictionary strDict1 = new StringDictionary();       strDict1.Add("

  2. Windows 10 および 8 でクイック アクセス メニューをカスタマイズする方法

    パワー ユーザー メニューとも呼ばれるクイック アクセスは、デバイス マネージャー、ディスク管理、コマンド プロンプトなどの高度なシステム ツールにアクセスする最速の方法です。この機能は、Windows 8 のリリース以降に導入されました。 アクセスするには、Windows キーと X キーを同時に押すか、[スタート] メニューを右クリックすると、ポップアップが表示されます。 このリストのアプリケーションではニーズが満たされない場合、または使用しないプログラムを削除したい場合は、Win+X メニュー エディターをダウンロードしてメニューをカスタマイズできます。 . この記事では、Windows