কম্পিউটার

C# এ তালিকার মোট উপাদানের সংখ্যা গণনা করুন?


তালিকায় মোট উপাদানের সংখ্যা গণনা করতে, কোডটি নিম্নরূপ -

উদাহরণ

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args) {
      List<String> list = new List<String>();
      list.Add("One");
      list.Add("Two");
      list.Add("Three");
      list.Add("Four");
      list.Add("Five");
      Console.WriteLine("Elements in List1...");
      foreach (string res in list) {
         Console.WriteLine(res);
      }
      Console.WriteLine("\nCount of elements in list = "+list.Count);
      list.Clear();
      Console.WriteLine("\nCount of elements in list (updated) = "+list.Count);
   }
}

আউটপুট

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

তৈরি করবে
Elements in List1...
One
Two
Three
Four
Five
Count of elements in list = 5
Count of elements in list (updated) = 0

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

উদাহরণ

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(String[] args) {
      List<String> list = new List<String>();
      list.Add("100");
      list.Add("200");
      list.Add("300");
      list.Add("400");
      list.Add("500");
      Console.WriteLine("Count of elements in the list = "+list.Count);  
      Console.WriteLine("Enumerator iterates through the list elements...");
      List<string>.Enumerator demoEnum = list.GetEnumerator();
      while (demoEnum.MoveNext()) {
         string res = demoEnum.Current;
         Console.WriteLine(res);
      }
      list.Add("600");
      list.Add("700");
      Console.WriteLine("Count of elements in the list (updated) = "+list.Count);
   }
}

আউটপুট

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

তৈরি করবে
Count of elements in the list = 5
Enumerator iterates through the list elements...
100
200
300
400
500
Count of elements in the list (updated) = 7

  1. কিভাবে C++ ব্যবহার করে ওপেনসিভিতে ফ্রেমের মোট সংখ্যা গণনা করবেন?

  2. সি# প্রোগ্রাম একটি স্ট্রিং শব্দ সংখ্যা গণনা

  3. পাইথন প্রোগ্রাম একটি তালিকায় উপাদান গণনা একটি উপাদান একটি Tuple না হওয়া পর্যন্ত?

  4. পাইথন তালিকায় একটি বস্তুর মোট সংখ্যা কিভাবে গণনা করা যায়?