共用方式為


OperationCollection.CopyTo(Operation[], Int32) 方法

定義

複製整個 OperationCollectionOperation 型別的相容一維陣列,從目標陣列的指定以零起始的索引位置開始。

public:
 void CopyTo(cli::array <System::Web::Services::Description::Operation ^> ^ array, int index);
public void CopyTo (System.Web.Services.Description.Operation[] array, int index);
member this.CopyTo : System.Web.Services.Description.Operation[] * int -> unit
Public Sub CopyTo (array As Operation(), index As Integer)

參數

array
Operation[]

做為複製動作目的端的 Operation 型別的陣列。

index
Int32

以零起始的索引,要於此處開始放置複製的集合。

範例

下列範例示範 CopyTo 方法的用法。

array<Operation^>^myOperationArray = gcnew array<Operation^>(myOperationCollection->Count);
myOperationCollection->CopyTo( myOperationArray, 0 );
Console::WriteLine( "The operation(s) in the collection are :" );
for ( int i = 0; i < myOperationCollection->Count; i++ )
{
   Console::WriteLine( " {0}", myOperationArray[ i ]->Name );
}
Operation[] myOperationArray = new Operation[
                                    myOperationCollection.Count];
myOperationCollection.CopyTo(myOperationArray, 0);
Console.WriteLine("The operation(s) in the collection are :");
for(int i = 0; i < myOperationCollection.Count; i++)
{
   Console.WriteLine(" " + myOperationArray[i].Name);
}
Dim myOperationArray(myOperationCollection.Count) As Operation
myOperationCollection.CopyTo(myOperationArray, 0)
Console.WriteLine("The operation(s) in the collection are :")
Dim i As Integer
For i = 0 To myOperationCollection.Count - 1
   Console.WriteLine(" " + myOperationArray(i).Name)
Next i

適用於