কম্পিউটার

C# এ ArrayList-এ একটি উপাদান রয়েছে কিনা তা পরীক্ষা করুন


অ্যারেলিস্টে একটি উপাদান রয়েছে কিনা তা পরীক্ষা করতে, কোডটি নিম্নরূপ -

উদাহরণ

using System;
using System.Collections;
public class Demo {
   public static void Main(){
      ArrayList list = new ArrayList();
      list.Add("One");
      list.Add("Two");
      list.Add("Three");
      list.Add("Four");
      list.Add("Five");
      list.Add("Six");
      list.Add("Seven");
      list.Add("Eight");
      Console.WriteLine("ArrayList elements...");
      foreach(string str in list){
         Console.WriteLine(str);
      }
      Console.WriteLine("ArrayList is read-only? = "+list.IsReadOnly);
      Console.WriteLine("Does the element Six in the ArrayList? = "+list.Contains("Six"));
   }
}

আউটপুট

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

তৈরি করবে
ArrayList elements...
One
Two
Three
Four
Five
Six
Seven
Eight
ArrayList is read-only? = False
Does the element Six in the ArrayList? = True

উদাহরণ

এখন আরেকটি উদাহরণ দেখা যাক -

using System;
using System.Collections;
public class Demo {
   public static void Main(){
      ArrayList arrList = new ArrayList();
      arrList.Add(100);
      arrList.Add(200);
      arrList.Add(300);
      arrList.Add(400);
      arrList.Add(500);
      Console.WriteLine("Display elements in a range...");
      IEnumerator demoEnum = arrList.GetEnumerator(1, 3);
      while (demoEnum.MoveNext()) {
         Object ob = demoEnum.Current;
         Console.WriteLine(ob);
      }
      Console.WriteLine("Does the element 1000 in the ArrayList? = "+arrList.Contains(1000));
   }
}

আউটপুট

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

তৈরি করবে
Display elements in a range...
200
300
400
Does the element 1000 in the ArrayList? = False

  1. একটি উপাদানের বিষয়বস্তু HTML এ সম্পাদনাযোগ্য কি না তা পরীক্ষা করুন

  2. কিভাবে HTML এ উপাদানের উচ্চতা যোগ করবেন?

  3. কিভাবে HTML এ উপাদানের মান যোগ করবেন?

  4. C# এ একটি ArrayList ক্লাসের ক্যাপাসিটি প্রপার্টি কি?