ServiceDescriptionCollection.CopyTo メソッドとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > ServiceDescriptionCollection.CopyTo メソッドの意味・解説 

ServiceDescriptionCollection.CopyTo メソッド

ServiceDescription 型の 1 次元配列に、その配列内の指定した 0 から始まるインデックス開始位置として ServiceDescriptionCollection 全体コピーします

名前空間: System.Web.Services.Description
アセンブリ: System.Web.Services (system.web.services.dll 内)
構文構文

Public Sub CopyTo ( _
    array As ServiceDescription(), _
    index As Integer _
)
Dim instance As ServiceDescriptionCollection
Dim array As ServiceDescription()
Dim index As Integer

instance.CopyTo(array, index)
public void CopyTo (
    ServiceDescription[] array,
    int index
)
public:
void CopyTo (
    array<ServiceDescription^>^ array, 
    int index
)
public void CopyTo (
    ServiceDescription[] array, 
    int index
)
public function CopyTo (
    array : ServiceDescription[], 
    index : int
)

パラメータ

array

コピー アクションコピー先として使用する ServiceDescription 型の配列

index

コピーされコレクション貼り付け開始位置を示す、0 から始まるインデックス番号

使用例使用例
Dim myArray(myCollection.Count -1 ) As ServiceDescription
' Copy the collection to a 'ServiceDescription' array.
myCollection.CopyTo(myArray, 0)
Dim i As Integer
For i = 0 To myArray.Length - 1
   Console.WriteLine("Name of element in array: "
 + myArray(i).Name)
Next i
ServiceDescription[] myArray = new ServiceDescription[myCollection.Count];
// Copy the collection to a 'ServiceDescription' array.
myCollection.CopyTo(myArray,0);
for(int i=0; i<myArray.Length; i++)
{
   Console.WriteLine("Name of element in array: " +
  myArray[i].Name);
}
array<ServiceDescription^>^myArray = gcnew array<ServiceDescription^>(myCollection->Count);

// Copy the collection to a ServiceDescription array.
myCollection->CopyTo( myArray, 0 );
for ( int i = 0; i < myArray->Length;
 i++ )
   Console::WriteLine( "Name of element in array: {0}",
 myArray[ i ]->Name );
ServiceDescription myArray[] = 
    new ServiceDescription[myCollection.get_Count()];

// Copy the collection to a 'ServiceDescription' array.
myCollection.CopyTo(myArray, 0);
for (int i = 0; i < myArray.length; i++)
 {
    Console.WriteLine("Name of element in array: " 
        + myArray[i].get_Name());
}
ServiceDescription myArray[] = 
    new ServiceDescription[myCollection.get_Count()];

// Copy the collection to a ServiceDescription array.
myCollection.CopyTo(myArray, 0);
for (int i = 0; i < myArray.length; i++)
 {
    Console.WriteLine("Name of element in array: " 
        + myArray[i].get_Name());
}
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ServiceDescriptionCollection クラス
ServiceDescriptionCollection メンバ
System.Web.Services.Description 名前空間


このページでは「.NET Framework クラス ライブラリ リファレンス」からServiceDescriptionCollection.CopyTo メソッドを検索した結果を表示しています。
Weblioに収録されているすべての辞書からServiceDescriptionCollection.CopyTo メソッドを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からServiceDescriptionCollection.CopyTo メソッド を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

ServiceDescriptionCollection.CopyTo メソッドのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



ServiceDescriptionCollection.CopyTo メソッドのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS