C#
 Computer >> コンピューター >  >> プログラミング >> C#

OrderedDictionary要素をC#の指定されたインデックスの配列インスタンスにコピーします


OrderedDictionary要素を指定されたインデックスのArrayインスタンスにコピーするには、コードは次のとおりです-

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#で指定された条件に一致する要素が含まれているかどうかを確認します

    配列に特定の条件に一致する要素が含まれているかどうかを確認するには、C#でStartsWith()メソッドを使用できます- 例 using System; public class Demo {    public static void Main(){       string[] products = { "Electronics", "Accessories", "Clothing", "Toys", "Clothing", "F

  2. 配列の末尾から指定された数の要素を返すC#プログラム

    TakeLast()メソッドを使用して、配列の最後から要素を返します。 まず、配列を宣言して初期化します。 int[] prod = { 110, 290, 340, 540, 456, 698, 765, 789}; それでは、最後の3つの要素を取得しましょう。 IEnumerable<int> units = prod.AsQueryable().TakeLast(3); 完全なコードを見てみましょう。 例 using System; using System.Linq; using System.Collections.Generic; public class Dem