Method AddSorted
AddSorted(Collections.Generic.IEnumerable<T>)
Add all the items from another collection with an enumeration order that is increasing in the items.
The idea is that the implementation may use a faster algorithm to merge the two collections.
Declaration
public void AddSorted(Collections.Generic.IEnumerable<T> items)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<T> | items | The collection to add. |