TimeIntervalTAdd Method (TimeIntervalT) | 
 
            Adds two intervals together, producing an interval list that
            includes both intervals.
            
 
    Namespace: 
   AGI.Foundation.Time
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic TimeIntervalCollection<T> Add(
	TimeInterval<T> other
)
Public Function Add ( 
	other As TimeInterval(Of T)
) As TimeIntervalCollection(Of T)
public:
TimeIntervalCollection<T>^ Add(
	TimeInterval<T>^ other
)
member Add : 
        other : TimeInterval<'T> -> TimeIntervalCollection<'T> 
Parameters
- other
 - Type: AGI.Foundation.TimeTimeIntervalT
The interval to add. 
Return Value
Type: 
TimeIntervalCollectionTA collection that contains both intervals.
See Also