Send feedback on this topic.
Teradata.Client.Provider
Less Than or Equal Operator (TdIntervalSecond)



Teradata.Client.Provider Namespace > TdIntervalSecond Structure : Less Than or Equal Operator
An instance of TdIntervalSecond.
An instance of TdIntervalSecond.
This operator determines whether the left is less than or equal the right.
Syntax
'Declaration
 
Public Operator <=( _
   ByVal left As TdIntervalSecond, _
   ByVal right As TdIntervalSecond _
) As Boolean
'Usage
 
public bool operator <=( 
   TdIntervalSecond left,
   TdIntervalSecond right
)
public:
bool operator <=( 
   TdIntervalSecond left,
   TdIntervalSecond right
)

Parameters

left
An instance of TdIntervalSecond.
right
An instance of TdIntervalSecond.

Return Value

true indicates the left is less than or equal to the right, false otherwise.

Return Value Description
true

left and right are not TdIntervalSecond.Null and left is less than or equal to right

-or-

left is Null and right is Null.

false

The left is greater than right

-or-

Either left or right is Null.

Remarks

Comparison operators always return false if one of the operands is Null. Therefore you should not assume that the reverse condition is true. For example you cannot assume that the left is greater than the right if the "<=" operator returns false.

The reverse condition is true when the left and the right are not Null.

Requirements

Target Platforms: Windows 7, Windows 8, Windows 8.1, Windows 10, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, Windows Server 2012 R2

See Also

Reference

TdIntervalSecond Structure
TdIntervalSecond Members