class ConcurrentQueue<T>

in global :: System . Collections . Concurrent

Represents a thread-safe first in-first out (FIFO) collection.

  • T The type of the elements contained in the queue.

public int Count { get; }

Gets the number of elements contained in the .

  • Returns The number of elements contained in the .

public bool IsEmpty { get; }

Gets a value that indicates whether the is empty.

  • Returns if the is empty; otherwise, .

public T[] ToArray( )

😔 No documentation found.

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

😔 No documentation found.

public IEnumerator<T> GetEnumerator( )

😔 No documentation found.

public void Enqueue( T item )

😔 No documentation found.

public bool TryDequeue( ref T result )

😔 No documentation found.

public bool TryPeek( ref T result )

😔 No documentation found.

public void Clear( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public bool Equals( object obj )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public ConcurrentQueue<T>( )

😔 No documentation found.

public ConcurrentQueue<T>( IEnumerable<T> collection )

😔 No documentation found.