System.Collections.Queue.QueueDebugView.QueueDebugView C# (CSharp) Méthode

QueueDebugView() public méthode

public QueueDebugView ( Queue queue ) : System.Diagnostics
queue Queue
Résultat System.Diagnostics
            public QueueDebugView(Queue queue)
            {
                if (queue == null)
                    throw new ArgumentNullException(nameof(queue));
                Contract.EndContractBlock();

                _queue = queue;
            }
Queue.QueueDebugView