Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

सी # में निर्दिष्ट इंडेक्स पर स्ट्रिंग डिक्शनरी को ऐरे में कॉपी करें

निर्दिष्ट इंडेक्स पर स्ट्रिंग डिक्शनरी को ऐरे में कॉपी करने के लिए, कोड इस प्रकार है -

उदाहरण

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. सी # में सॉर्टेडलिस्ट की निर्दिष्ट अनुक्रमणिका से निकालें

    SortedList की निर्दिष्ट अनुक्रमणिका से निकालने के लिए, कोड इस प्रकार है - उदाहरण using System; using System.Collections; public class Demo {    public static void Main(String[] args) {       SortedList sortedList = new SortedList();       sortedList.Add("

  1. सी # में सरणी वर्ग की प्रतिलिपि (,,) विधि का उपयोग कैसे करें

    जैसा कि नाम से पता चलता है कि सी # में Array.Copy() विधि का उपयोग एक सरणी के तत्वों को दूसरे सरणी में कॉपी करने के लिए किया जाता है। निम्नलिखित वाक्य रचना है। Array.Copy(src, dest, length); यहां स्रोत =सरणी की प्रतिलिपि बनाई जानी है गंतव्य =गंतव्य सरणी लंबाई =कितने तत्वों को कॉपी करना है

  1. सी # में ऐरे कॉपी

    सरणी का प्रयोग करें। एक ऐरे के एक सेक्शन को दूसरे में कॉपी करने के लिए C# में कॉपी मेथड। हमारे मूल सरणी में 10 तत्व हैं - int [] n = new int[10]; /* n is an array of 10 integers */ हमारी नई सरणी जो सरणी 1 के एक खंड को कॉपी करेगी, उसमें 5 तत्व हैं - int [] m = new int[5]; /* m is an array of 5 integ