Share via


CopyTo Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Copies the Stack to an existing one-dimensional Array, starting at the specified array index.

Namespace:  System.Collections
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Overridable Sub CopyTo ( _
    array As Array, _
    index As Integer _
)
public virtual void CopyTo(
    Array array,
    int index
)
public:
virtual void CopyTo(
    Array^ array, 
    int index
)
abstract CopyTo : 
        array:Array * 
        index:int -> unit 
override CopyTo : 
        array:Array * 
        index:int -> unit 
public function CopyTo(
    array : Array, 
    index : int
)

Parameters

Implements

ICollection. . :: . .CopyTo(Array, Int32)

Remarks

The elements are copied onto the array in last-in-first-out (LIFO) order, similar to the order of the elements returned by a succession of calls to Pop.

This method is an O(n) operation, where n is Count.

.NET Framework Security

See Also

Reference

Stack Class

System.Collections Namespace