Data Types VB.Net

Imports System
Imports System.IO
Imports System.Numerics
Imports System.Runtime.Serialization.Formatters.Binary
Module Example
    Public Sub Main()
        Dim bigNumber As BigInteger = BigInteger.Pow(Int32.MaxValue, 2)
        Dim number As ULong = UInt64.MaxValue
        If bigNumber >= number Then
            ' Do something
        End If
        bigNumber = BigInteger.Pow(Int32.MaxValue, 2)
        number = UInt64.MaxValue
        If BigInteger.op_GreaterThanOrEqual(bigNumber, number) Then
            ' Do something
        End If
    End Sub
End Module