Version.GreaterThan(Version, Version) Operator

Definition

Determines whether the first specified Version object is greater than 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 v2; otherwise, false.

Remarks

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

Applies to

See also