TimeIntervalTAdd Method (TimeIntervalCollectionT) |
Adds an interval list to this interval, producing a new interval list
that includes this interval plus all intervals in the input list.
The input list is not changed by this method.
Namespace:
AGI.Foundation.Time
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public TimeIntervalCollection<T> Add(
TimeIntervalCollection<T> intervalList
)
Public Function Add (
intervalList As TimeIntervalCollection(Of T)
) As TimeIntervalCollection(Of T)
public:
TimeIntervalCollection<T>^ Add(
TimeIntervalCollection<T>^ intervalList
)
member Add :
intervalList : TimeIntervalCollection<'T> -> TimeIntervalCollection<'T>
Parameters
- intervalList
- Type: AGI.Foundation.TimeTimeIntervalCollectionT
The interval list to add.
Return Value
Type:
TimeIntervalCollectionTA new interval list.
See Also