public Node(object o)
 {
     this.Object = o;
     this.Next   = null;
 }
 public Node(object o)
 {
     this.Object = o;
     this.Next = null;
 }