Bridge

Decimal..::..GreaterThanOrEqual Operator

Returns a value indicating whether a specified Decimal is greater than or equal to another specified Decimal.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


public static bool operator >=(
	decimal d1,
	decimal d2
)
Public Shared Operator >= ( _
	d1 As Decimal, _
	d2 As Decimal _
) As Boolean
public:
static bool^ operator >=(
	Decimal^ d1, 
	Decimal^ d2
)

Parameters

d1
Type: System..::..Decimal
The first value to compare.
d2
Type: System..::..Decimal
The second value to compare.

Return Value

true if d1 is greater than or equal to d2; otherwise, false.