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)
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET