| AddRange(IEnumerable<T>) |
Adds the values in a sequence to the collection. |
| AddRange(array of T) |
Adds the values in an open array to the collection. |
Adds the values in a sequence to the collection.
Delphi
procedure AddRange(const Values: IEnumerable<T>); overload;
Parameters
- Values
- IEnumerable<T>
The values to add.
Exceptions
Values is nil.
Values are added in enumeration order.