SortedDictionary<TKey,TValue>.KeyCollection.CopyTo 方法

定义

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

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[]

一维数组,它是从 SortedDictionary<TKey,TValue>.KeyCollection 中复制的元素的目标。 该数组的索引必须从零开始。

index
Int32

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

实现

例外

arraynull

index 小于 0。

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

注解

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

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

适用于

另请参阅