在指定索引处将 ListDictionary 复制到 C# 中的 Array 实例


要将 ListDictionary 复制到指定索引处的 Array 实例,代码如下所示 −

示例

 实时演示

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      ListDictionary dict = new ListDictionary();
      dict.Add(1, "Harry");
      dict.Add(2, "Mark");
      dict.Add(3, "John");
      dict.Add(4, "Jacob");
      dict.Add(5, "Tim");
      dict.Add(6, "Sam");
      dict.Add(7, "Tom");
      dict.Add(8, "Kevin");
      Console.WriteLine("ListDictionary elements...");
      foreach(DictionaryEntry d in dict){
         Console.WriteLine(d.Key + " " + d.Value);
      }
      DictionaryEntry[] dictArr = new DictionaryEntry[dict.Count];
      Console.WriteLine("
Copying 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);       }    } }

输出

将生成以下输出 −

ListDictionary elements...
1 Harry
2 Mark
3 John
4 Jacob
5 Tim
6 Sam
7 Tom
8 Kevin

Copying to Array instance...
Key = 1, Value = Harry
Key = 2, Value = Mark
Key = 3, Value = John
Key = 4, Value = Jacob
Key = 5, Value = Tim
Key = 6, Value = Sam
Key = 7, Value = Tom
Key = 8, Value = Kevin

示例

现在让我们看另一个示例 −

 实时演示

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

输出

将生成以下输出 −

ListDictionary elements...
1 Harry
2 Mark
3 John
4 Jacob
5 Tim

Copying to Array instance...
Key = , Value =
Key = , Value =
Key = , Value =
Key = , Value =
Key = , Value =
Key = 1, Value = Harry
Key = 2, Value = Mark
Key = 3, Value = John
Key = 4, Value = Jacob
Key = 5, Value = Tim

更新于: 2019 年 12 月 10 日

65 次浏览

开启您的职业生涯

完成课程,通过认证

开始
广告