Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Copies the elements of the collection to an array, starting at a specified index.
Namespace: Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly: ProviderFramework (in ProviderFramework.dll)
Syntax
public void CopyTo(
T[] array,
int arrayIndex
)
public:
virtual void CopyTo(
array<T>^ array,
int arrayIndex
) sealed
Public Sub CopyTo (
array As T(),
arrayIndex As Integer
)
Parameters
array
Type: T[]The one-dimensional Array that is the destination of the elements copied from collection.
arrayIndex
Type: System.Int32The zero-based index in array at which copying begins.
Implements
ICollection<T>.CopyTo(T[], Int32)
See Also
CopyTo Overload
ThreadSafeReadOnlyObservableCollection<T> Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace
Return to top