SqlBatchCommandCollection.CopyTo 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
| CopyTo(SqlBatchCommand[], Int32) |
대상 배열의 대상 인덱스에서 시작하여 전체 SqlBatchCommandCollection 를 1차원 배열에 복사합니다. |
| CopyTo(DbBatchCommand[], Int32) |
특정 ICollection<T> 인덱스부터 시작하여 Array의 요소를 Array에 복사합니다. |
CopyTo(SqlBatchCommand[], Int32)
- Source:
- SqlBatchCommandCollection.cs
대상 배열의 대상 인덱스에서 시작하여 전체 SqlBatchCommandCollection 를 1차원 배열에 복사합니다.
public:
virtual void CopyTo(cli::array <Microsoft::Data::SqlClient::SqlBatchCommand ^> ^ array, int arrayIndex);
public void CopyTo(Microsoft.Data.SqlClient.SqlBatchCommand[] array, int arrayIndex);
override this.CopyTo : Microsoft.Data.SqlClient.SqlBatchCommand[] * int -> unit
Public Sub CopyTo (array As SqlBatchCommand(), arrayIndex As Integer)
매개 변수
- array
- SqlBatchCommand[]
- arrayIndex
- Int32
구현
적용 대상
CopyTo(DbBatchCommand[], Int32)
- Source:
- SqlBatchCommandCollection.cs
특정 ICollection<T> 인덱스부터 시작하여 Array의 요소를 Array에 복사합니다.
public:
override void CopyTo(cli::array <System::Data::Common::DbBatchCommand ^> ^ array, int arrayIndex);
public override void CopyTo(System.Data.Common.DbBatchCommand[] array, int arrayIndex);
override this.CopyTo : System.Data.Common.DbBatchCommand[] * int -> unit
Public Overrides Sub CopyTo (array As DbBatchCommand(), arrayIndex As Integer)
매개 변수
- array
- DbBatchCommand[]
Array에서 복사한 요소의 대상인 일차원 ICollection<T>입니다. Array에는 0부터 시작하는 인덱스가 있어야 합니다.
- arrayIndex
- Int32
array에서 복사가 시작되는 0부터 시작하는 인덱스입니다.