কম্পিউটার

C# এ নির্দিষ্ট সূচকে Array-এ StringDictionary কপি করুন


নির্দিষ্ট সূচকে স্ট্রিংডিকশনারিকে অ্যারেতে অনুলিপি করতে, কোডটি নিম্নরূপ -

উদাহরণ

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      StringDictionary strDict = new StringDictionary();
      strDict.Add("1", "SUV");
      strDict.Add("2", "AUV");
      strDict.Add("3", "Electric Car");
      strDict.Add("4", "Utility Vehicle");
      strDict.Add("5", "Hatchback");
      strDict.Add("6", "Compact car");
      strDict.Add("7", "MUV");
      strDict.Add("8", "Crossover");
      strDict.Add("9", "Covertible");
      strDict.Add("10", "Quadricycle");
      DictionaryEntry[] arr = { new DictionaryEntry(),
         new DictionaryEntry(),
         new DictionaryEntry(),
         new DictionaryEntry(),
         new DictionaryEntry(),
         new DictionaryEntry(),
         new DictionaryEntry(),
         new DictionaryEntry(),
         new DictionaryEntry(),
         new DictionaryEntry()};
      strDict.CopyTo(arr, 0);
      for (int i = 0; i < arr.Length; i++) {
         Console.WriteLine(arr[i].Key + " " + arr[i].Value);
      }
   }
}

আউটপুট

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

তৈরি করবে
10 Quadricycle
1 SUV
2 AUV
3 Electric Car
4 Utility Vehicle
5 Hatchback
6 Compact car
7 MUV
8 Crossover
9 Covertible

উদাহরণ

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

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      StringDictionary strDict = new StringDictionary();
      strDict.Add("1", "SUV");
      strDict.Add("2", "AUV");
      strDict.Add("3", "Electric Car");
      strDict.Add("4", "Utility Vehicle");
      strDict.Add("5", "Hatchback");
      strDict.Add("6", "Compact car");
      DictionaryEntry[] arr = { new DictionaryEntry(),
         new DictionaryEntry(),
         new DictionaryEntry(),
         new DictionaryEntry(),
         new DictionaryEntry(),
         new DictionaryEntry(),
         new DictionaryEntry(),
         new DictionaryEntry()};
      strDict.CopyTo(arr, 2);
      for (int i = 0; i < arr.Length; i++) {
         Console.WriteLine(arr[i].Key + " " + arr[i].Value);
      }
   }
}

আউটপুট

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

তৈরি করবে
1 SUV
2 AUV
3 Electric Car
4 Utility Vehicle
5 Hatchback
6 Compact car

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

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

  3. সি# এ অ্যারে ক্লাসের কপি(, ,) পদ্ধতিটি কীভাবে ব্যবহার করবেন

  4. C# এ অ্যারে কপি