C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#でStringCollectionへの同期アクセスを取得する方法


StringCollectionへの同期アクセスを取得するには、コードは次のとおりです-

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringCollection stringCol = new StringCollection();
      String[] arr = new String[] { "100", "200", "300", "400", "500" };
      Console.WriteLine("Array elements...");
      foreach (string res in arr) {
         Console.WriteLine(res);
      }
      stringCol.AddRange(arr);
      Console.WriteLine("Total number of elements = "+stringCol.Count);
      stringCol.RemoveAt(3);
      Console.WriteLine("Total number of elements now = "+stringCol.Count);
      Console.WriteLine("Synchronize access...");
      lock(stringCol.SyncRoot) {
         foreach(object ob in stringCol) {
            Console.WriteLine(ob);
         }
      }
   }
}

出力

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

Array elements...
100
200
300
400
500
Total number of elements = 5
Total number of elements now = 4
Synchronize access...
100
200
300
500

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

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringCollection strCol = new StringCollection();
      strCol.Add("Katie");
      strCol.Add("Philips");
      strCol.Add("Jacob");
      strCol.Add("Carl");
      strCol.Add("Gary");
      Console.WriteLine("Synchronize access...");
      lock(strCol.SyncRoot) {
         foreach(object ob in strCol) {
            Console.WriteLine(ob);
         }
      }
   }
}

出力

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

Synchronize access...
Katie
Philips
Jacob
Carl
Gary

  1. C#でタプルの6番目の要素を取得するにはどうすればよいですか?

    タプルの6番目の要素を取得するためのコードは、次のとおりです- 例 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, 100, 1200, 1500);   &nbs

  2. C#の2次元配列から要素にアクセスするにはどうすればよいですか?

    2次元配列は、x個の行とy個の列を持つテーブルと考えることができます。 2次元配列の要素には、添え字を使用してアクセスします。つまり、配列の行インデックスと列インデックスです。 int x = a[1,1]; Console.WriteLine(x); 2次元配列から要素にアクセスする方法を示す例を見てみましょう。 例 using System; namespace Demo {    class MyArray {       static void Main(string[] args) {       &