DurationLessThan Operator  | 
 
            Returns  if left is shorter than right.
            
 
    Namespace: 
   AGI.Foundation.Time
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static bool operator <(
	Duration left,
	Duration right
)
Public Shared Operator < ( 
	left As Duration,
	right As Duration
) As Boolean
public:
static bool operator <(
	Duration left, 
	Duration right
)
static let inline (<)
        left : Duration * 
        right : Duration  : boolParameters
- left
 - Type: AGI.Foundation.TimeDuration
The left Duration. - right
 - Type: AGI.Foundation.TimeDuration
The right Duration. 
Return Value
Type: 
Boolean if left is less than right; otherwise 
.
See Also