কম্পিউটার

C# এ সংগ্রহের নির্দিষ্ট সূচকে উপাদান সরান


সংগ্রহের নির্দিষ্ট সূচকে উপাদান সরাতে, কোডটি নিম্নরূপ -

উদাহরণ

using System;
using System.Collections.ObjectModel;
public class Demo {
   public static void Main() {
      Collection<string> col = new Collection<string>();
      col.Add("Andy");
      col.Add("Kevin");
      col.Add("John");
      col.Add("Kevin");
      col.Add("Mary");
      col.Add("Katie");
      col.Add("Barry");
      col.Add("Nathan");
      col.Add("Mark");
      Console.WriteLine("Count of elements = "+ col.Count);
      Console.WriteLine("Iterating through the collection...");
      var enumerator = col.GetEnumerator();
      while (enumerator.MoveNext()) {
         Console.WriteLine(enumerator.Current);
      }
      col.RemoveAt(3);
      Console.WriteLine("Count of elements (updated) = "+ col.Count);
      Console.WriteLine("Iterating through the collection... (updated)");
      enumerator = col.GetEnumerator();
      while (enumerator.MoveNext()) {
         Console.WriteLine(enumerator.Current);
      }
   }
}

আউটপুট

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

তৈরি করবে
Count of elements = 9
Iterating through the collection...
Andy
Kevin
John
Kevin
Mary
Katie
Barry
Nathan
Mark
Count of elements (updated) = 8
Iterating through the collection... (updated)
Andy
Kevin
John
Mary
Katie
Barry
Nathan
Mark

উদাহরণ

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

using System;
using System.Collections.ObjectModel;
public class Demo {
   public static void Main() {
      Collection<string> col = new Collection<string>();
      col.Add("One");
      col.Add("Two");
      col.Add("Three");
      col.Add("Four");
      col.Add("Five");
      col.Add("Six");
      Console.WriteLine("Count of elements = "+ col.Count);
      Console.WriteLine("Iterating through the collection...");
      var enumerator = col.GetEnumerator();
      while (enumerator.MoveNext()) {
         Console.WriteLine(enumerator.Current);
      }
      col.RemoveAt(1);
      col.RemoveAt(2);
      col.RemoveAt(3);
      Console.WriteLine("Count of elements (updated) = "+ col.Count);
      Console.WriteLine("Iterating through the collection... (updated)");
      enumerator = col.GetEnumerator();
      while (enumerator.MoveNext()) {
         Console.WriteLine(enumerator.Current);
      }
   }
}

আউটপুট

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

তৈরি করবে
Count of elements = 6
Iterating through the collection...
One
Two
Three
Four
Five
Six
Count of elements (updated) = 3
Iterating through the collection... (updated)
One
Three
Five

  1. C# এ একটি সাজানো তালিকার নির্দিষ্ট সূচক থেকে সরান

  2. একটি উপাদান C# এর সংগ্রহে আছে কিনা তা পরীক্ষা করুন

  3. একটি হ্যাশসেটে C# এ নির্দিষ্ট উপাদান রয়েছে কিনা তা পরীক্ষা করুন

  4. একটি হ্যাশসেট এবং একটি নির্দিষ্ট সংগ্রহ C# এ সাধারণ উপাদান ভাগ করে কিনা তা পরীক্ষা করুন