[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Provides a priority queue.

Namespace: KvTv.Collections.Generic
Assembly:   KvTv.DirectShow.Components (in KvTv.DirectShow.Components.dll)

Syntax

Visual Basic (Declaration)
Public Class PriorityQueue(Of T As {Object, }) _
	Implements ICollection(Of T), IEnumerable(Of T), IEnumerable
C#
public class PriorityQueue<T> : ICollection<T>, IEnumerable<T>, IEnumerable where T : Object, 
Visual C++
generic<typename T>
where T : Object, 
public ref class PriorityQueue : ICollection<T>, IEnumerable<T>, IEnumerable

Type Parameters

T
The type of elements in the queue.

Inheritance Hierarchy

System.Object
  KvTv.Collections.Generic.PriorityQueue<(Of T>)