Declaration
public void AddRange(
IEnumerable<T> collection
)
Summary
Adds all of the specified items into the list. The resulting list will contain all the items in the same order
as a stable sort would have produced. NOTE: the current implementation is O(N log N) if the collection is
empty, or O(N*M) otherwise, where N = items currently in the collection and M = items to be added. The latter
can be improved.