namespace Priority_Queue { public class StablePriorityQueueNode : FastPriorityQueueNode { /// /// Represents the order the node was inserted in /// public long InsertionIndex { get; internal set; } } }