HttpFileCollection.CopyTo(Array, Int32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
파일 컬렉션의 멤버를 지정된 인덱스부터 시작하여 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)
매개 변수
- 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)