ExpandoObject.ICollection<KeyValuePair<String, Object>>.CopyTo Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Copies the elements of the ICollection<T> to an array of type KeyValuePair<TKey, TValue>, starting at the specified array index.
Assembly: System.Core (in System.Core.dll)
void ICollection<KeyValuePair<string, Object>>.CopyTo( KeyValuePair<string, Object>[] array, int arrayIndex )
Parameters
- array
- Type:
System.Collections.Generic.KeyValuePair<String, Object>
[]
The one-dimensional array of type KeyValuePair<TKey, TValue> that is the destination of the KeyValuePair<TKey, TValue> elements copied from the ICollection<T>. The array must have zero-based indexing.
- arrayIndex
- Type: System.Int32
The zero-based index in array at which copying starts.
Implements
ICollection<T>.CopyTo(T[], Int32)
Show: