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)

適用対象

こちらもご覧ください