FurreList.CopyTo Method (Furre[], Int32)

FFF3PP

FurreListCopyTo Method (Furre, Int32)

This stuff is still in the planning stages. Any questions or Comments are welcome.

[This is preliminary documentation and is subject to change.]

Copies the elements of the ICollectionT to an Array, starting at a particular Array index.

Namespace:  Furcadia.Net.DreamInfo
Assembly:  FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 44
Syntax
public void CopyTo(
	Furre[] array,
	int arrayIndex
)
Public Sub CopyTo ( 
	array As Furre(),
	arrayIndex As Integer
)

Dim instance As FurreList
Dim array As Furre()
Dim arrayIndex As Integer

instance.CopyTo(array, arrayIndex)
public:
virtual void CopyTo(
	array<Furre^>^ array, 
	int arrayIndex
) sealed
abstract CopyTo : 
        array : Furre[] * 
        arrayIndex : int -> unit 
override CopyTo : 
        array : Furre[] * 
        arrayIndex : int -> unit 

Parameters

array
Type: Furcadia.Net.DreamInfoFurre
The one-dimensional Array that is the destination of the elements copied from ICollectionT. The Array must have zero-based indexing.
arrayIndex
Type: SystemInt32
The zero-based index in array at which copying begins.

Implements

ICollectionTCopyTo(T, Int32)
See Also