BlockingCollection<T>.ToArray Method

Definition

Copies the items from the BlockingCollection<T> instance into a new array.

public:
 cli::array <T> ^ ToArray();
public T[] ToArray ();
member this.ToArray : unit -> 'T[]
Public Function ToArray () As T()

Returns

T[]

An array containing copies of the elements of the collection.

Exceptions

Remarks

The copied elements are not removed from the collection.

If any method in BlockingCollection is executing while the ToArray method executes, the return value is approximate. ToArray may include items that have already been removed, or exclude items that have already been inserted.

Applies to

See also