다음을 통해 공유


ServiceDescriptionCollection.CopyTo(ServiceDescription[], Int32) 메서드

정의

대상 배열의 지정된 인덱스(0부터 시작)에서 시작하여 전체 ServiceDescriptionCollectionServiceDescription 형식의 1차원 배열에 복사합니다.

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

매개 변수

array
ServiceDescription[]

복사될 대상인 ServiceDescription 형식의 배열입니다.

index
Int32

복사된 컬렉션을 배치하기 시작할 인덱스(0부터 시작)입니다.

예제

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

적용 대상