কম্পিউটার

সি# এ স্ট্রিংকলেকশনে সিঙ্ক্রোনাইজ অ্যাক্সেস কীভাবে পাবেন


স্ট্রিংকলেকশনে সিঙ্ক্রোনাইজ অ্যাক্সেস পেতে, কোডটি নিম্নরূপ -

উদাহরণ

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# এ Tuple এর দ্বিতীয় উপাদান পেতে হয়?

  2. কিভাবে C# এ Tuple এর তৃতীয় উপাদান পাবেন?

  3. কিভাবে C# এ Tuple এর ষষ্ঠ উপাদান পাবেন?

  4. আমরা কিভাবে C# এ দ্বি-মাত্রিক অ্যারে থেকে উপাদানগুলি অ্যাক্সেস করব?