Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.0 » SQL Anywhere Server - Programming » SQL Anywhere Data Access APIs » SQL Anywhere .NET 2.0 API Reference » iAnywhere.Data.SQLAnywhere namespace (.NET 2.0) » SABulkCopyColumnMappingCollection class

 

CopyTo method

Copies the elements of the SABulkCopyColumnMappingCollection to an array of SABulkCopyColumnMapping items, starting at a particular index.

Syntax
Visual Basic

Public Sub CopyTo( _
   ByVal array As SABulkCopyColumnMapping(), _
   ByVal index As Integer _
)
C#

public void CopyTo(
   SABulkCopyColumnMapping[] array,
   int index
);
Parameters
  • array   The one-dimensional SABulkCopyColumnMapping array that is the destination of the elements copied from SABulkCopyColumnMappingCollection. The array must have zero-based indexing.

  • index   The zero-based index in the array at which copying begins.

See also