public void AddDoubleLinkedListToEnd(DoubleLinkedList insertList) { AddDoubleLinkedListByIndex(Length, insertList); }
public void AddDoubleLinkedListByFirstIndex(DoubleLinkedList insertList) { AddDoubleLinkedListByIndex(0, insertList); }