Copies the options of the options collection to an
System.Array, starting at a particular System.Array index.
Syntax
'Declaration
Public Overridable Sub CopyTo( _
ByVal () As , _
ByVal As Integer _
)
'Usage
Dim instance As NativeObjectArray(Of T,TParentType)
Dim array() As
Dim arrayIndex As Integer
instance.CopyTo(array, arrayIndex)
public virtual void CopyTo(
[] ,
int
)
public: virtual void CopyTo(
[]* ,
int
)
public:
virtual void CopyTo(
,
int
)
Parameters
- array
-
The one-dimensional System.Array that is the destination of the options
copied from option collection. The System.Array must have zero-based indexing.
- arrayIndex
-
The zero-based index in array at which copying begins.
Exceptions
See Also