TimeIntervalTIntersect Method (TimeInterval) | 
 
            Computes an interval which is the intersection of this interval with another,
            with the data from this one.
            
 
    Namespace: 
   AGI.Foundation.Time
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic TimeInterval<T> Intersect(
	TimeInterval other
)
Public Function Intersect ( 
	other As TimeInterval
) As TimeInterval(Of T)
public:
TimeInterval<T>^ Intersect(
	TimeInterval^ other
)
member Intersect : 
        other : TimeInterval -> TimeInterval<'T> 
Parameters
- other
 - Type: AGI.Foundation.TimeTimeInterval
The interval to intersect with this interval. 
Return Value
Type: 
TimeIntervalTThe intersection of the two intervals, with the data from this one.
See Also