ServiceDescriptionCollection.CopyTo Method

Copies the entire ServiceDescriptionCollection to a one-dimensional array of type ServiceDescription, starting at the specified zero-based index of the target array.

Namespace: System.Web.Services.Description
Assembly: System.Web.Services (in system.web.services.dll)

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

Parameters

array

An array of type ServiceDescription serving as the destination of the copy action.

index

The zero-based index at which to start placing the copied collection.

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());
}

Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

Community Additions

ADD
Show: