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