TableBatchOperation.CopyTo Method

Windows Runtime Azure Storage Client Library

Copies all the elements of the TableBatchOperation to the specified one-dimensional array starting at the specified destination array index.

Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Usage

Visual Basic
Dim instance As TableBatchOperation
Dim array As TableOperation()
Dim arrayIndex As Integer

instance.CopyTo(array, arrayIndex)

Syntax

Visual Basic
Public Sub CopyTo ( _
	array As TableOperation(), _
	arrayIndex As Integer _
)
C#
public void CopyTo (
	TableOperation[] array,
	int arrayIndex
)
C++
public:
virtual void CopyTo (
	array<TableOperation^>^ array, 
	int arrayIndex
) sealed
J#
public final void CopyTo (
	TableOperation[] array, 
	int arrayIndex
)
JScript
public final function CopyTo (
	array : TableOperation[], 
	arrayIndex : int
)

Parameters

array

The one-dimensional array that is the destination of the elements copied from the TableBatchOperation.

arrayIndex

The index in the destination array at which copying begins.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also