ImmutableArray<T>.ICollection.CopyTo(Array, Int32) 方法

定义

从指定的索引开始,将此数组复制到另一个数组。

 virtual void System.Collections.ICollection.CopyTo(Array ^ array, int index) = System::Collections::ICollection::CopyTo;
void ICollection.CopyTo (Array array, int index);
abstract member System.Collections.ICollection.CopyTo : Array * int -> unit
override this.System.Collections.ICollection.CopyTo : Array * int -> unit
Sub CopyTo (array As Array, index As Integer) Implements ICollection.CopyTo

参数

array
Array

此数组要复制到的数组。

index
Int32

目标数组中开始复制操作处的索引。

实现

注解

此成员是显式接口成员的实现。 它只能在 ImmutableArray<T> 实例被强制转换为 ICollection 接口时使用。

适用于