Beispiel #1
0
 public Node2(T data)
 {
     this.Value = data;
     Next       = null;
     Previous   = null;
 }
Beispiel #2
0
 public Node2()
 {
     Next     = null;
     Previous = null;
 }