Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[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
- array
Type: System. . :: . .Array
The one-dimensional Array that is the destination of the elements copied from Stack. The Array must have zero-based indexing.
- index
Type: System. . :: . .Int32
The zero-based index in array at which copying begins.
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.