SortedDictionary<TKey,TValue>.CopyTo 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从指定的索引处开始,将 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
中从零开始的索引,从此处开始复制。
实现
例外
array
为 null
。
index
小于 0。
源 SortedDictionary<TKey,TValue> 中的元素个数大于从 index
到目标 array
末尾之间的可用空间。
注解
注意
如果源SortedDictionary<TKey,TValue>的类型无法自动转换为目标 array
的类型 ,则引发 InvalidCastException的非泛型实现ICollection.CopyTo将引发 ,而泛型实现将引发 ArgumentException。
此方法是 O (n
) 操作,其中 n
为 Count。