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)
Параметры
- 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)