Dictionary<TKey,TValue>.KeyCollection.CopyTo(TKey[], Int32) 方法

定义

从指定数组索引开始将 Dictionary<TKey,TValue>.KeyCollection 元素复制到现有一维 Array 中。

public:
 virtual void CopyTo(cli::array <TKey> ^ array, int index);
public void CopyTo (TKey[] array, int index);
abstract member CopyTo : 'Key[] * int -> unit
override this.CopyTo : 'Key[] * int -> unit
Public Sub CopyTo (array As TKey(), index As Integer)

参数

array
TKey[]

一维 Array,它是从 Dictionary<TKey,TValue>.KeyCollection 复制的元素的目标。 Array 必须具有从零开始的索引。

index
Int32

array 中从零开始的索引,从此处开始复制。

实现

例外

arraynull

index 小于零。

Dictionary<TKey,TValue>.KeyCollection 中的元素个数大于从 index 到目标 array 末尾之间的可用空间。

注解

元素按照枚举器循环访问 的相同顺序复制到 ArrayDictionary<TKey,TValue>.KeyCollection

此方法是 O (n) 操作,其中 nCount

适用于

另请参阅