using C_.Datastructures.Generic; namespace C_.Datastructures.LinkedList { internal class LinkedListNode : UndirectedNode> {//Inherits from Node public static LinkedListNode Create(T? value, LinkedListNode? next) { return new LinkedListNode { Value = value, Next = next }; } } }