Beispiel #1
0
 private void buildActiveList(ref SortedDoublyLinkedList <CActiveEdge> dest, ref SortedDoublyLinkedList <CActiveEdge> source)
 {
     foreach (var edge in source)
     {
         dest.Add(edge);
     }
 }
Beispiel #2
0
 private void buildActiveList(ref SortedDoublyLinkedList<CActiveEdge> dest, ref SortedDoublyLinkedList<CActiveEdge> source)
 {
     foreach (var edge in source)
         dest.Add(edge);
 }