Exemplo n.º 1
0
 public ObservableLinkedList(IEnumerable <T> collection)
 {
     _linkedList = new LinkedListEx <T>(collection);
 }
Exemplo n.º 2
0
 public ObservableLinkedList()
 {
     _linkedList = new LinkedListEx <T>();
 }