當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# ArrayList.InsertRange()用法及代碼示例


C#中的ArrayList.InsertRange(Int32,ICollection)方法用於將集合中的元素插入到指定索引處的ArrayList中。那就是插入的元素屬於一個集合(即隊列等)。

用法:

public virtual void InsertRange (int index, ICollection element);

參數:


  • index:這是索引,要在其中插入新元素。
  • element:這是ICollection,其元素將以指定的索引插入到ArrayList中。

注意: 集合不能為null,但可以包含null的元素。

異常:

  • ArgumentNullException:如果元素為null。
  • ArgumentOutOfRangeException:如果索引小於零或索引大於計數器。
  • NotSupportedException:如果ArrayList為隻讀或ArrayList具有固定大小。

示例1:

// C# program to demonstrate the  
// ArrayList.InsertRange(Int32,  
// ICollection) Method 
using System; 
using System.Collections; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        // initializes a new ArrayList 
        ArrayList ArrList = new ArrayList(); 
  
        // adding values in the  
        // ArrayList using "Add" 
        ArrList.Add("A"); 
        ArrList.Add("D"); 
        ArrList.Add("E"); 
        ArrList.Add("F"); 
  
        // initializes a new Stack 
        // as collection 
        Stack s = new Stack(); 
  
        // pushing values in the stack 
        // values are pop as B, C 
        s.Push("C"); 
        s.Push("B"); 
  
        // Displays the ArrayList and the Queue 
        Console.WriteLine("The ArrayList initially has:"); 
        Display(ArrList); 
        Console.WriteLine("The collection initially has:"); 
        Display(s); 
  
        // Copies the elements of the stack  
        // to the ArrayList at index 1. 
        ArrList.InsertRange(1, s); 
  
        // Displays the ArrayList. 
        Console.WriteLine("After insert the collection in the ArrList:"); 
        Display(ArrList); 
    } 
  
    // Display function 
    public static void Display(IEnumerable ArrList) 
    { 
        foreach(Object a in ArrList) 
        { 
            Console.Write("   " + a); 
        } 
        Console.WriteLine(); 
    } 
}
輸出:
The ArrayList initially has:
   A   D   E   F
The collection initially has:
   B   C
After insert the collection in the ArrList:
   A   B   C   D   E   F

示例2:+

// C# program to demonstrate the  
// ArrayList.InsertRange(Int32,  
// ICollection) Method 
using System; 
using System.Collections; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        // initializes a new ArrayList 
        ArrayList ArrList = new ArrayList(); 
  
        // adding values in the ArrayList 
        // using "Insert" method 
        ArrList.Insert(0, "A"); 
        ArrList.Insert(1, "D"); 
        ArrList.Insert(2, "E"); 
        ArrList.Insert(3, "G"); 
  
        // Initializes a new Stack 
        // as collection 
        Stack s = new Stack(); 
  
        // pushing values in the stack 
        // values are pop as B, C 
        s.Push("C"); 
        s.Push("B"); 
  
        // Displays the ArrayList and the Queue. 
        Console.WriteLine("The ArrayList initially has:"); 
        Display(ArrList); 
        Console.WriteLine("The collection initially has:"); 
        Display(s); 
  
        // Copies the elements of the stack  
        // to the ArrayList at index 1. 
        ArrList.InsertRange(1, s); 
  
        // Displays the ArrayList. 
        Console.WriteLine("After insert the collection in the ArrList:"); 
        Display(ArrList); 
  
        // insert F by finding the index of G 
        // using IndexOf() method 
        ArrList.Insert(ArrList.IndexOf("G"), "F"); 
        Console.WriteLine("After inserting F before G:"); 
        Display(ArrList); 
    } 
  
    // Display function 
    public static void Display(IEnumerable ArrList) 
    { 
        foreach(Object a in ArrList) 
        { 
            Console.Write(" " + a); 
        } 
        Console.WriteLine(); 
    } 
}
輸出:
The ArrayList initially has:
 A D E G
The collection initially has:
 B C
After insert the collection in the ArrList:
 A B C D E G
After inserting F before G:
 A B C D E F G

參考:



相關用法


注:本文由純淨天空篩選整理自SoumikMondal大神的英文原創作品 C# | ArrayList.InsertRange() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。