다음을 통해 공유


HttpFileCollection.CopyTo(Array, Int32) 메서드

정의

파일 컬렉션의 멤버를 지정된 인덱스부터 시작하여 Array에 복사합니다.

public:
 void CopyTo(Array ^ dest, int index);
public void CopyTo (Array dest, int index);
member this.CopyTo : Array * int -> unit
Public Sub CopyTo (dest As Array, index As Integer)

매개 변수

dest
Array

대상 Array입니다.

index
Int32

복사를 시작할 대상 배열의 인덱스입니다.

예제

다음 예제에서는 전체 파일 컬렉션을 새 Array 개체에 복사합니다.

// Create the one-dimensional target array.
 // Dimension it large enough to hold the files collection.
 Array MyArray = Array.CreateInstance( typeof(String), Request.Files.Count );

 // Copy the entire collection to the array.
 Request.Files.CopyTo( MyArray, 0 );
' Create the one-dimensional target array.
 ' Dimension it large enough to hold the files collection.
 Dim MyArray As Array = Array.CreateInstance(GetType(String), Request.Files.Count)
 
 ' Copy the entire collection to the array.
 Request.Files.CopyTo(MyArray, 0)

적용 대상

추가 정보