OperationCollection.CopyTo(Operation[], Int32) Methode

Definitie

Kopieert het hele OperationCollection naar een compatibele eendimensionale matrix van het type Operation, beginnend bij de opgegeven op nul gebaseerde index van de doelmatrix.

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)

Parameters

array
Operation[]

Een matrix van het type Operation dat fungeert als de bestemming voor de kopieeractie.

index
Int32

De op nul gebaseerde index waarop de gekopieerde verzameling moet worden geplaatst.

Voorbeelden

In het volgende voorbeeld ziet u het gebruik van de methode 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

Van toepassing op