কম্পিউটার

C# এ একটি সাজানো তালিকা বস্তুর মানগুলির তালিকা পাওয়া


একটি SortedList অবজেক্টের মানের তালিকা পেতে, কোডটি নিম্নরূপ -

উদাহরণ

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      SortedList list = new SortedList();
      list.Add("A", 1);
      list.Add("B ", 2);
      list.Add("C ", 3);
      list.Add("D", 4);
      list.Add("E", 5);
      list.Add("F", 6);
      list.Add("G", 7);
      list.Add("H", 8);
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in list) {
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("\nList of values...SortedList");
      IList col = list.GetValueList();
      foreach(int res in col)
         Console.WriteLine(res);
   }
}

আউটপুট

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

তৈরি করবে
SortedList elements...
A 1
B  2
C  3
D 4
E 5
F 6
G 7
H 8
List of values...SortedList
1
2
3
4
5
6
7
8

উদাহরণ

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

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      SortedList list = new SortedList();
      list.Add("One", "IT");
      list.Add("Two ", "Operations");
      list.Add("Three", "Marketing");
      list.Add("Four", "Purchase");
      list.Add("Five", "Sales");
      list.Add("Six", "Finance");
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in list) {
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("\nList of values...SortedList");
      IList col = list.GetValueList();
      foreach(string res in col)
         Console.WriteLine(res);
   }
}

আউটপুট

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

তৈরি করবে
SortedList elements...
Five Sales
Four Purchase
One IT
Six Finance
Three Marketing
Two  Operations

List of values...SortedList
Sales
Purchase
IT
Finance
Marketing
Operations

  1. কিভাবে একটি C# তালিকায় স্ট্রিং মান যোগ করবেন?

  2. কিভাবে একটি C# তালিকায় পূর্ণসংখ্যার মান যোগ করবেন?

  3. C# এ SortedList ক্লাস কি?

  4. C# এ SortedList ক্লাসের মান সম্পত্তি কি?