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

C#のOrderedDictionaryの値を含むICollectionを取得します


OrderedDictionaryの値を含むICollectionを取得するには、コードは次のとおりです-

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      OrderedDictionary dict = new OrderedDictionary();
      dict.Add("1", "One");
      dict.Add("2", "Two");
      dict.Add("3", "Three");
      dict.Add("4", "Four");
      dict.Add("5", "Five");
      dict.Add("6", "Six");
      dict.Add("7", "Seven");
      dict.Add("8", "Eight");
      ICollection col = dict.Values;
      String[] strVal = new String[dict.Count];
      col.CopyTo(strVal, 0);
      Console.WriteLine("Displaying the values...");
      for (int i = 0; i < dict.Count; i++) {
         Console.WriteLine(strVal[i]);
      }
   }
}

出力

これにより、次の出力が生成されます-

Displaying the values...
One
Two
Three
Four
Five
Six
Seven
Eight

別の例を見てみましょう-

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      OrderedDictionary dict = new OrderedDictionary();
      dict.Add("One", "John");
      dict.Add("Two", "Tim");
      dict.Add("Three", "Katie");
      dict.Add("Four", "Andy");
      dict.Add("Five", "Gary");
      dict.Add("Six", "Amy");
      ICollection col = dict.Values;
      String[] strVal = new String[dict.Count];
      col.CopyTo(strVal, 0);
      Console.WriteLine("Displaying the Values...");
      for (int i = 0; i < dict.Count; i++) {
         Console.WriteLine(strVal[i]);
      }
   }
}

出力

これにより、次の出力が生成されます-

Displaying the Values...
John
Tim
Katie
Andy
Gary
Amy

  1. C#のStringDictionaryで値のコレクションを取得します

    StringDictionaryの値のコレクションを取得するには、コードは次のとおりです- 例 using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       StringDictionary strDict1 = new StringDictionary();       strDict1.Add("S

  2. C#リストの要素の範囲を取得する

    GetRange()メソッドを使用して、要素の範囲を取得します- まず、リストを設定して要素を追加します- List<int> arr1 = new List<int>(); arr1.Add(10); arr1.Add(20); arr1.Add(30); arr1.Add(40); arr1.Add(50); ここで、新しいリストの下で、インデックス1と3の間の要素の範囲を取得します- List<int> myList = arr1.GetRange(1, 3); これが完全なコードです- 例 using System; using System.