SortedDictionary<TKey,TValue>.CopyTo 方法

定义

从指定的索引处开始,将 SortedDictionary<TKey,TValue> 的元素复制到指定的 KeyValuePair<TKey,TValue> 结构的数组中。

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

参数

array
KeyValuePair<TKey,TValue>[]

KeyValuePair<TKey,TValue> 结构的一维数组,它是从当前 SortedDictionary<TKey,TValue> 中复制的元素的目标。该数组必须具有从零开始的索引。

index
Int32

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

实现

例外

arraynull

index 小于 0。

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

注解

注意

如果源SortedDictionary<TKey,TValue>的类型无法自动转换为目标 array的类型 ,则引发 InvalidCastException的非泛型实现ICollection.CopyTo将引发 ,而泛型实现将引发 ArgumentException

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

适用于