ImmutableHashSet<T>.ICollection<T>.CopyTo(T[], Int32) 方法
定义
从特定的索引开始,将集的元素复制到一个数组中。Copies the elements of the set to an array, starting at a particular index.
virtual void System.Collections.Generic.ICollection<T>.CopyTo(cli::array <T> ^ array, int arrayIndex) = System::Collections::Generic::ICollection<T>::CopyTo;
void ICollection<T>.CopyTo (T[] array, int arrayIndex);
abstract member System.Collections.Generic.ICollection<T>.CopyTo : 'T[] * int -> unit
override this.System.Collections.Generic.ICollection<T>.CopyTo : 'T[] * int -> unit
Sub CopyTo (array As T(), arrayIndex As Integer) Implements ICollection(Of T).CopyTo
参数
- array
- T[]
一维数组,它是从集内复制的元素的目标。The one-dimensional array that is the destination of the elements copied from the set. 该数组的索引必须从零开始。The array must have zero-based indexing.
- arrayIndex
- Int32
array 中从零开始的索引,从此处开始复制。The zero-based index in array at which copying begins.
实现
注解
此成员是显式接口成员的实现。This member is an explicit interface member implementation. 它只能在 ImmutableHashSet<T> 实例被强制转换为 ICollection<T> 接口时使用。It can be used only when the ImmutableHashSet<T> instance is cast to an ICollection<T> interface.