語言

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)

適用於

另請參閱