Version

Greater Than or Equal Operator

Determines if one month has the same month and year or is after another month.
Syntax
'Declaration
 
Public Operator >=( _
   ByVal m1 As Month, _
   ByVal m2 As Month _
) As Boolean
public bool operator >=( 
   Month m1,
   Month m2
)

Parameters

m1
first Month
m2
second Month

Return Value

A boolean indicating if the first month has the same or later month and year than the second month.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also