কম্পিউটার

C# এ নির্দিষ্ট সূচকে Array ইন্সট্যান্সে OrderedDictionary এলিমেন্ট কপি করুন


OrderedDictionary উপাদানগুলিকে নির্দিষ্ট সূচকে অ্যারে উদাহরণে অনুলিপি করতে, কোডটি নিম্নরূপ -

উদাহরণ

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      OrderedDictionary dict = new OrderedDictionary ();
      dict.Add(1, "Harry");
      dict.Add(2, "Mark");
      dict.Add(3, "John");
      dict.Add(4, "Jacob");
      dict.Add(5, "Tim");
      Console.WriteLine("OrderedDictionary elements...");
      foreach(DictionaryEntry d in dict){
         Console.WriteLine(d.Key + " " + d.Value);
      }
      DictionaryEntry[] dictArr = new DictionaryEntry[dict.Count];
      Console.WriteLine("\nCopying to Array instance...");
      dict.CopyTo(dictArr, 0);
      for (int i = 0; i < dictArr.Length; i++) {
         Console.WriteLine("Key = "+dictArr[i].Key + ", Value = " + dictArr[i].Value);
      }
   }
}

আউটপুট

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

তৈরি করবে
OrderedDictionary elements...
1 Harry
2 Mark
3 John
4 Jacob
5 Tim
Copying to Array instance...
Key = 5, Value = Tim
Key = 4, Value = Jacob
Key = 3, Value = John
Key = 2, Value = Mark
Key = 1, Value = Harry

উদাহরণ

Let us now see another example:
using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      OrderedDictionary dict = new OrderedDictionary ();
      dict.Add(1, 10);
      dict.Add(2, 20);
      Console.WriteLine("OrderedDictionary elements...");
      foreach(DictionaryEntry d in dict){
         Console.WriteLine(d.Key + " " + d.Value);
      }
      DictionaryEntry[] dictArr = new DictionaryEntry[5];
      Console.WriteLine("\nCopying to Array instance...");
      dict.CopyTo(dictArr, 0);
      for (int i = 0; i < dictArr.Length; i++) {
         Console.WriteLine("Key = "+dictArr[i].Key + ", Value = " + dictArr[i].Value);
      }
   }
}

আউটপুট

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

তৈরি করবে
OrderedDictionary elements...
1 10
2 20

Copying to Array instance...
Key = 2, Value = 20
Key = 1, Value = 10
Key = , Value =
Key = , Value =
Key = , Value =

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

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

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

  4. C# প্রোগ্রাম একটি অ্যারের শেষ থেকে নির্দিষ্ট সংখ্যক উপাদান ফেরত দেয়