3 implementations of ToArray
mscorlib (2)
system\Collections\Concurrent\ConcurrentQueue.cs (1)
299
public T[]
ToArray
()
system\Collections\Concurrent\ConcurrentStack.cs (1)
770
public T[]
ToArray
()
System (1)
sys\system\collections\concurrent\ConcurrentBag.cs (1)
555
public T[]
ToArray
()
4 references to ToArray
mscorlib (1)
system\Collections\Concurrent\IProducerConsumerCollection.cs (1)
115
get { return m_collection.
ToArray
(); }
System (3)
sys\system\collections\concurrent\BlockingCollection.cs (2)
1579
return m_collection.
ToArray
();
1620
T[] collectionSnapShot = m_collection.
ToArray
();
sys\system\collections\concurrent\ConcurrentBag.cs (1)
1115
get { return m_collection.
ToArray
(); }