EntityParameterCollection.CopyTo Method

 

Copies all the elements of the current EntityParameterCollection to the specified one-dimensional array.

Namespace:   System.Data.Entity.Core.EntityClient
Assembly:  EntityFramework (in EntityFramework.dll)

NameDescription
System_CAPS_pubmethodCopyTo(Array, Int32)

Copies all the elements of the current EntityParameterCollection to the specified one-dimensional Array starting at the specified destination Array index.(Overrides DbParameterCollection.CopyTo(Array, Int32).)

System_CAPS_pubmethodCopyTo(EntityParameter[], Int32)

Copies all the elements of the current EntityParameterCollection to the specified EntityParameterCollection starting at the specified destination index.


EntityParameterCollection.CopyTo Method (Array, Int32)

Copies all the elements of the current EntityParameterCollection to the specified one-dimensional Array starting at the specified destination Array index.

public override void CopyTo(
	Array array,
	int index
)

Parameters

array
Type: System.Array

The one-dimensional Array that is the destination of the elements copied from the current EntityParameterCollection .

index
Type: System.Int32

A 32-bit integer that represents the index in the Array at which copying starts.


EntityParameterCollection.CopyTo Method (EntityParameter[], Int32)

Copies all the elements of the current EntityParameterCollection to the specified EntityParameterCollection starting at the specified destination index.

public void CopyTo(
	EntityParameter[] array,
	int index
)

Parameters

array
Type: System.Data.Entity.Core.EntityClient.EntityParameter[]

The EntityParameterCollection that is the destination of the elements copied from the current EntityParameterCollection .

index
Type: System.Int32

A 32-bit integer that represents the index in the EntityParameterCollection at which copying starts.