Edit

Share via


MajorMinorVersion.GreaterThanOrEqual Operator

Definition

Compares the provided operands and returns true if the left operand is greater than or equal to the right operand, otherwise false.

public static bool operator >= (Orleans.Metadata.MajorMinorVersion left, Orleans.Metadata.MajorMinorVersion right);
static member ( >= ) : Orleans.Metadata.MajorMinorVersion * Orleans.Metadata.MajorMinorVersion -> bool
Public Shared Operator >= (left As MajorMinorVersion, right As MajorMinorVersion) As Boolean

Parameters

left
MajorMinorVersion

The left operand.

right
MajorMinorVersion

The right operand.

Returns

true if the left operand is greater than or equal to the right operand, otherwise false.

Applies to