Chili.Opf3 Send comments on this topic.
CopyTo Method
See Also 
Chili.Opf3.Mapping Namespace > IRelationInfoCollection Interface : CopyTo Method




array
The one-dimensional System.Array that is the destination of the elements copied from collection. The System.Array must have zero-based indexing.
arrayIndex
The zero-based index in array at which copying begins.
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.

Syntax

Visual Basic (Declaration) 
Overridable Sub CopyTo( _
   ByVal array() As IRelationInfo, _
   ByVal arrayIndex As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As IRelationInfoCollection
Dim array() As IRelationInfo
Dim arrayIndex As Integer
 
instance.CopyTo(array, arrayIndex)
C# 
virtual void CopyTo( 
   IRelationInfo[] array,
   int arrayIndex
)
Managed Extensions for C++ 
virtual void CopyTo( 
   IRelationInfo*[]* array,
   int arrayIndex
) 
C++/CLI 
virtual void CopyTo( 
   array<IRelationInfo^>^ array,
   int arrayIndex
) 

Parameters

array
The one-dimensional System.Array that is the destination of the elements copied from collection. The System.Array must have zero-based indexing.
arrayIndex
The zero-based index in array at which copying begins.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also