ServiceCollection.CopyTo(ServiceDescriptor[], Int32) Method

Definition

Copies the elements of the ICollection<T> to an Array, starting at a particular Array index.

public:
 virtual void CopyTo(cli::array <Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^> ^ array, int arrayIndex);
public void CopyTo (Microsoft.Extensions.DependencyInjection.ServiceDescriptor[] array, int arrayIndex);
abstract member CopyTo : Microsoft.Extensions.DependencyInjection.ServiceDescriptor[] * int -> unit
override this.CopyTo : Microsoft.Extensions.DependencyInjection.ServiceDescriptor[] * int -> unit
Public Sub CopyTo (array As ServiceDescriptor(), arrayIndex As Integer)

Parameters

array
ServiceDescriptor[]

The one-dimensional Array that is the destination of the elements copied from ICollection<T>. The Array must have zero-based indexing.

arrayIndex
Int32

The zero-based index in array at which copying begins.

Implements

Applies to