Ejemplo n.º 1
0
 public SONode(SONode <T> next) : this(next, default(T))
 {
 }
Ejemplo n.º 2
0
 public void SetNext(SONode <T> next)
 {
     this.Next = next;
 }
Ejemplo n.º 3
0
 public SONode(SONode <T> next, T value)
 {
     this.Next  = next;
     this.Value = value;
 }