Exemplo n.º 1
0
 public LinkedItem(LinkedItem <T> previous, T item)
     : this(previous, item, null)
 {
 }
Exemplo n.º 2
0
 public LinkedItem(T item, LinkedItem <T> next)
     : this(null, item, next)
 {
 }
Exemplo n.º 3
0
 public LinkedItem(LinkedItem <T> previous, T item, LinkedItem <T> next)
 {
     Previous = previous;
     Item     = item;
     Next     = next;
 }