DynamicType.CopyTo Method
Copies the collection items to the specified array of key/value pairs starting at the specified index.
Namespace: Microsoft.BusinessData.Runtime
Assembly: Microsoft.BusinessData (in Microsoft.BusinessData.dll)
Syntax
'Declaration
Public Sub CopyTo ( _
array As KeyValuePair(Of String, Object)(), _
arrayIndex As Integer _
)
'Usage
Dim instance As DynamicType
Dim array As KeyValuePair(Of String, Object)()
Dim arrayIndex As Integer
instance.CopyTo(array, arrayIndex)
public void CopyTo(
KeyValuePair<string, Object>[] array,
int arrayIndex
)
Parameters
array
Type: []The array to receive the items.
arrayIndex
Type: System.Int32The starting index.
Implements
ICollection<T>.CopyTo([], Int32)