Click or drag to resize
StackTCopyTo Method

Namespace: System.Collections.Generic
Assembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax
C#
public void CopyTo(
	T[] array,
	int arrayIndex
)

Parameters

array
Type: T
The one-dimensional Array that is the destination of the elements copied from StackT. The Array must have zero-based indexing.
arrayIndex
Type: SystemInt32
The zero-based index in array at which copying begins.
Exceptions
ExceptionCondition
ArgumentNullExceptionarray is null.
ArgumentOutOfRangeExceptionarrayIndex is less than zero.
ArgumentExceptionThe number of elements in the source StackT is greater than the available space from arrayIndex to the end of the destination array.
See Also