ServiceDescriptionFormatExtensionCollection.CopyTo-Methode
Kopiert die gesamte ServiceDescriptionFormatExtensionCollection in ein eindimensionales Array vom Typ ServiceDescriptionFormatExtension, beginnend am angegebenen nullbasierten Index des Zielarrays.
Namespace: System.Web.Services.Description
Assembly: System.Web.Services (in system.web.services.dll)
Syntax
'Declaration
Public Sub CopyTo ( _
array As Object(), _
index As Integer _
)
'Usage
Dim instance As ServiceDescriptionFormatExtensionCollection
Dim array As Object()
Dim index As Integer
instance.CopyTo(array, index)
public void CopyTo (
Object[] array,
int index
)
public:
void CopyTo (
array<Object^>^ array,
int index
)
public void CopyTo (
Object[] array,
int index
)
public function CopyTo (
array : Object[],
index : int
)
Parameter
- array
Ein Array vom Typ ServiceDescriptionFormatExtension, das als Ziel für den Kopiervorgang fungiert.
- index
Der nullbasierte Index, an dem mit dem Platzieren der kopierten Auflistung begonnen werden soll.
Beispiel
' Copy elements of collection to an Object array.
Dim myObjectArray2(myCollection.Count -1 ) As Object
myCollection.CopyTo(myObjectArray2, 0)
Console.WriteLine("Collection elements are copied to an object array.")
// Copy elements of collection to an Object array.
Object[] myObjectArray2 = new Object[myCollection.Count];
myCollection.CopyTo(myObjectArray2,0);
Console.WriteLine("Collection elements are copied to an object array.");
// Copy elements of collection to an Object array.
array<Object^>^myObjectArray2 = gcnew array<Object^>(myCollection->Count);
myCollection->CopyTo( myObjectArray2, 0 );
Console::WriteLine( "Collection elements are copied to an object array." );
// Copy elements of collection to an Object array.
Object myObjectArray2[] = new Object[myCollection.get_Count()];
myCollection.CopyTo(myObjectArray2, 0);
Console.WriteLine("Collection elements are copied to an "
+ "object array.");
Plattformen
Windows 98, Windows 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
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
ServiceDescriptionFormatExtensionCollection-Klasse
ServiceDescriptionFormatExtensionCollection-Member
System.Web.Services.Description-Namespace