public Node2(T data) { this.Value = data; Next = null; Previous = null; }
public Node2() { Next = null; Previous = null; }