কম্পিউটার

C# এ স্ট্রিং কালেকশন থেকে প্রথম ঘটনাটি সরান


StringCollection থেকে প্রথম ঘটনাটি অপসারণ করতে, কোডটি নিম্নরূপ −

উদাহরণ

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringCollection stringCol = new StringCollection();
      String[] arr = new String[] { "100", "200", "100", "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.Remove("100");
      Console.WriteLine("Total number of elements now = "+stringCol.Count);
   }
}

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
Array elements...
100
200
100
400
500
Total number of elements = 5
Total number of elements now = 4

উদাহরণ

আসুন আরেকটি উদাহরণ দেখি -

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringCollection stringCol = new StringCollection();  
      String[] arr = new String[] { "10", "20", "30", "40", "50", "60", "70", "80" };
      Console.WriteLine("Array elements...");
      foreach (string res in arr) {
         Console.WriteLine(res);
      }
      stringCol.AddRange(arr);
      Console.WriteLine("Total number of elements = "+stringCol.Count);
      stringCol.Remove("50");
      stringCol.Remove("60");
      stringCol.Remove("70");
      Console.WriteLine("Total number of elements now = "+stringCol.Count);
   }
}

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
Array elements...
10
20
30
40
50
60
70
80
Total number of elements = 8
Total number of elements now = 5

  1. একটি লিঙ্ক করা তালিকায় একটি নোডের প্রথম উপস্থিতি মুছে ফেলার জন্য C# প্রোগ্রাম

  2. একটি তালিকা থেকে প্রথম তিনটি উপাদান পেতে C# প্রোগ্রাম

  3. লিঙ্কডলিস্ট থেকে উপাদানগুলি সরাতে জাভা প্রোগ্রাম

  4. জাভাতে ArrayList থেকে সমস্ত উপাদান সরান