AttributeCollectionCopyTo Method
|
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
Namespace:
DXFReaderNET.Collections
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public void CopyTo(
Attribute[] array,
int arrayIndex
)
Public Sub CopyTo (
array As Attribute(),
arrayIndex As Integer
)
public:
void CopyTo(
array<Attribute^>^ array,
int arrayIndex
)
member CopyTo :
array : Attribute[] *
arrayIndex : int -> unit
METHOD CopyTo(
array AS Attribute[],
arrayIndex AS LONG
) AS VOID
Parameters
- array
- Type: DXFReaderNET.EntitiesAttribute
The one-dimensional System.Array that is the destination of the elements copied from the collection. The System.Array must have zero-based indexing. - arrayIndex
- Type: SystemInt32
The zero-based index in array at which copying begins.
See Also