.NET Framework Class Library
DoubleCollection.ICollection.CopyTo Method
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
For a description of this member, see ICollection.CopyTo.
Assembly: PresentationCore (in PresentationCore.dll)
Syntax
Visual Basic
Private Sub CopyTo ( _ array As Array, _ index As Integer _ ) Implements ICollection.CopyTo
C#
void ICollection.CopyTo( Array array, int index )
Visual C++
private: virtual void CopyTo( Array^ array, int index ) sealed = ICollection::CopyTo
F#
private abstract CopyTo : array:Array * index:int -> unit private override CopyTo : array:Array * index:int -> unit
Parameters
- array
- Type: System.Array
A zero-based Array that receives the copied items from the DoubleCollection.
- index
- Type: System.Int32
The first position in the specified Array to receive the copied contents.
Implements
ICollection.CopyTo(Array, Int32)Remarks
This member is an explicit interface member implementation. It can be used only when the DoubleCollection instance is cast to an ICollection interface.
Version Information
.NET Framework
Supported in: 4, 3.5, 3.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also