Exemplo n.º 1
0
 public DoubleLinkedList(DoubleLinkedList <T> list)
 {
     this._firstItem = list._firstItem;
     this._lastItem  = list._lastItem;
 }
Exemplo n.º 2
0
 public DoubleLinkedList(DoubleLinkedList <T> dll)
 {
     this._firstItem = dll._firstItem;
     this._lastItem  = dll._lastItem;
 }