কম্পিউটার

C# এ একটি অ্যারে অবজেক্টে সাজানো তালিকার উপাদানগুলি অনুলিপি করা হচ্ছে


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

উদাহরণ

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args){
      SortedList list = new SortedList();
      list.Add("1", "AB");
      list.Add("2", "CD");
      list.Add("3", "EF");
      list.Add("4", "GH");
      list.Add("5", "IJ");
      list.Add("6", "JK");
      list.Add("7", "KL");
      list.Add("8", "LM");
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in list){
         Console.WriteLine("Key = "+d.Key + ", Value = " + d.Value);
      }
      Console.WriteLine("\nCopied to Array object...");
      DictionaryEntry[] dictArr = new DictionaryEntry[10];
      list.CopyTo(dictArr, 2);
      for (int i = 0; i < dictArr.Length; i++) {
         Console.WriteLine("Key = "+ dictArr[i].Key + ", Value = " + dictArr[i].Value);
      }
   }
}

আউটপুট

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

তৈরি করবে
SortedList elements...
Key = 1, Value = AB
Key = 2, Value = CD
Key = 3, Value = EF
Key = 4, Value = GH
Key = 5, Value = IJ
Key = 6, Value = JK
Key = 7, Value = KL
Key = 8, Value = LM

Copied to Array object...
Key = , Value =
Key = , Value =
Key = 1, Value = AB
Key = 2, Value = CD
Key = 3, Value = EF
Key = 4, Value = GH
Key = 5, Value = IJ
Key = 6, Value = JK
Key = 7, Value = KL
Key = 8, Value = LM

উদাহরণ

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

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args){
      SortedList list = new SortedList();
      list.Add("1", "Katie");
      list.Add("2", "Andy");
      list.Add("3", "Mark");
      list.Add("4", "Gary");
      list.Add("5", "Sam");
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in list){
         Console.WriteLine("Key = "+d.Key + ", Value = " + d.Value);
      }
      Console.WriteLine("\nCopied to Array object...");
      DictionaryEntry[] dictArr = new DictionaryEntry[5];
      list.CopyTo(dictArr, 0);
      for (int i = 0; i < dictArr.Length; i++) {
         Console.WriteLine("Key = "+ dictArr[i].Key + ", Value = " + dictArr[i].Value);
      }
   }
}

আউটপুট

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

তৈরি করবে
SortedList elements...
Key = 1, Value = Katie
Key = 2, Value = Andy
Key = 3, Value = Mark
Key = 4, Value = Gary
Key = 5, Value = Sam

Copied to Array object...
Key = 1, Value = Katie
Key = 2, Value = Andy
Key = 3, Value = Mark
Key = 4, Value = Gary
Key = 5, Value = Sam

  1. C# এ এক-মাত্রিক অ্যারেতে সারির উপাদানগুলি অনুলিপি করা হচ্ছে

  2. আমরা কিভাবে C# এ দ্বি-মাত্রিক অ্যারে থেকে উপাদানগুলি অ্যাক্সেস করব?

  3. C# এ SortedList ক্লাসের আইটেম সম্পত্তি কি?

  4. C# এ জ্যাগড অ্যারের উপাদানের ধরন কী?