<PackageReference Include="NETStandard.Library" Version="2.0.0" />

System.Collections.Concurrent.ConcurrentQueue<T>

public int Count { get; }

public bool IsEmpty { get; }

public ConcurrentQueue()

public ConcurrentQueue(IEnumerable<T> collection)

public void CopyTo(T[] array, int index)

public void Enqueue(T item)

public T[] ToArray()

public bool TryDequeue(out T result)

public bool TryPeek(out T result)