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 elements of the ArrayList to a new array of the specified element type.
Namespace: System.Collections
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Overridable Function ToArray ( _
type As Type _
) As Array
public virtual Array ToArray(
Type type
)
public:
virtual Array^ ToArray(
Type^ type
)
abstract ToArray :
type:Type -> Array
override ToArray :
type:Type -> Array
public function ToArray(
type : Type
) : Array
Parameters
- type
Type: System. . :: . .Type
The element Type of the destination array to create and copy elements to.
Return Value
Type: System. . :: . .Array
An array of the specified element type containing copies of the elements of the ArrayList.
Remarks
All of the objects in the ArrayList object will be cast to the Type specified in the type parameter.
The elements are copied using Array..::..Copy, which 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.