BlockingCollection<T>.ToArray Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
An array containing copies of the elements of the collection.
Exceptions
The BlockingCollection<T> has been disposed.
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.