Send feedback on this topic.
Teradata.Client.Provider
Compare Method (TdIntervalMonth)



Teradata.Client.Provider Namespace > TdIntervalMonth Structure : Compare Method
An instance of TdIntervalMonth.
An instance of TdIntervalMonth.
Two TdIntervalMonth intervals are compared and a value is returned that indicates left is greater than, less than or equal to right.
Syntax
'Declaration
 
Public Shared Function Compare( _
   ByVal left As TdIntervalMonth, _
   ByVal right As TdIntervalMonth _
) As Integer
'Usage
 
Dim left As TdIntervalMonth
Dim right As TdIntervalMonth
Dim value As Integer
 
value = TdIntervalMonth.Compare(left, right)
public static int Compare( 
   TdIntervalMonth left,
   TdIntervalMonth right
)
public:
static int Compare( 
   TdIntervalMonth left,
   TdIntervalMonth right
) 

Parameters

left
An instance of TdIntervalMonth.
right
An instance of TdIntervalMonth.

Return Value

The result of the comparison is returned as a signed integer.
Remarks
Return Value Description
Less than zero

left is less than right

-or-

left is TdIntervalMonth.Null and right is not Null.

Zero

left equals right

-or-

left is Null and right is Null

Greater than zero

left is greater than right

-or-

left is not Null and right is Null.

Requirements
ProductVersionsPlatforms
.NET6, 7Windows, Linux, MacOS
.NET Framework4.6.2, 4.7, 4.7.1, 4.7.2, 4.8Windows
.NET Standard2.0Windows, Linux, MacOS
See Also

Reference

TdIntervalMonth Structure
TdIntervalMonth Members