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)

Применяется к

См. также раздел