在 C# 中,将集合的元素复制到 ArrayList 中的元素范围内


要将集合的元素复制到 ArrayList 中的元素范围内,代码如下 -

示例

 实时演示

using System;
using System.Collections;
public class Demo {
   public static void Main(){
      ArrayList arrList = new ArrayList();
      arrList.Add("A");
      arrList.Add("B");
      arrList.Add("C");
      arrList.Add("D");
      Console.WriteLine("ArrayList elements...");
      for (int i = 0; i < arrList.Count; i++) {
         Console.WriteLine("" + arrList[i]);
      }
      string[] str = { "Demo", "Text" };
      arrList.SetRange(0, str);
      Console.WriteLine("After copying...");
      for (int i = 0; i < arrList.Count; i++) {
         Console.WriteLine("" + arrList[i]);
      }
   }
}

输出

output -

ArrayList elements...
A
B
C
D
After copying...
Demo
Text
C
D

示例

以下让我们再看一个示例 -

 实时演示

using System;
using System.Collections;
public class Demo {
   public static void Main(){
      ArrayList arrList = new ArrayList();
      arrList.Add("One");
      arrList.Add("Two");
      arrList.Add("Three");
      arrList.Add("Four");
      arrList.Add("Five");
      arrList.Add("Six");
      arrList.Add("Seven");
      arrList.Add("Eight");
      Console.WriteLine("ArrayList elements...");
      for (int i = 0; i < arrList.Count; i++) {
         Console.WriteLine("" + arrList[i]);
      }
      string[] str = { "Demo", "Text" };
      arrList.SetRange(2, str);
      Console.WriteLine("After copying...");
      for (int i = 0; i < arrList.Count; i++) {
         Console.WriteLine("" + arrList[i]);
      }
   }
}

输出

output -

ArrayList elements...
One
Two
Three
Four
Five
Six
Seven
Eight
After copying...
One
Two
Demo
Text
Five
Six
Seven
Eight

更新日期: 10-12-2019

212 次浏览

开始你的 职业

完成课程可获得认证

开始
广告