Esempio n. 1
0
 public Stack()
 {
     _list = new LinkedList2 <T>();
 }
Esempio n. 2
0
 public Deque()
 {
     _list = new LinkedList2 <T>();
 }