संपादित करें

इसके माध्यम से साझा किया गया


Version.GreaterThanOrEqual(Version, Version) Operator

Definition

Determines whether the first specified Version object is greater than or equal to the second specified Version object.

public:
 static bool operator >=(Version ^ v1, Version ^ v2);
public static bool operator >= (Version v1, Version v2);
public static bool operator >= (Version? v1, Version? v2);
static member ( >= ) : Version * Version -> bool
Public Shared Operator >= (v1 As Version, v2 As Version) As Boolean

Parameters

v1
Version

The first Version object.

v2
Version

The second Version object.

Returns

true if v1 is greater than or equal to v2; otherwise, false.

Remarks

The equivalent method for this operator is Version.CompareTo(Object)

Applies to

See also