mscorlib(4.0.0.0) API with additions
IProducerConsumerCollection.cs
2 
4 {
7  [__DynamicallyInvokable]
9  {
19  [__DynamicallyInvokable]
20  void CopyTo(T[] array, int index);
21 
26  [__DynamicallyInvokable]
27  bool TryAdd(T item);
28 
32  [__DynamicallyInvokable]
33  bool TryTake(out T item);
34 
37  [__DynamicallyInvokable]
38  T[] ToArray();
39  }
40 }
T [] ToArray()
Copies the elements contained in the T:System.Collections.Concurrent.IProducerConsumerCollection`1 to...
Definition: __Canon.cs:3
Exposes an enumerator, which supports a simple iteration over a non-generic collection....
Definition: IEnumerable.cs:9
bool TryAdd(T item)
Attempts to add an object to the T:System.Collections.Concurrent.IProducerConsumerCollection`1.
Defines methods to manipulate thread-safe collections intended for producer/consumer usage....
Defines size, enumerators, and synchronization methods for all nongeneric collections.
Definition: ICollection.cs:8
bool TryTake(out T item)
Attempts to remove and return an object from the T:System.Collections.Concurrent.IProducerConsumerCol...
void CopyTo(T[] array, int index)
Copies the elements of the T:System.Collections.Concurrent.IProducerConsumerCollection`1 to an T:Syst...