using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace C_.Datastructures.Nodes { internal class QueueNode : Node> { public static QueueNode Create(T? value, QueueNode? next) { return new QueueNode { Value = value, Next = next }; } } }