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, 4)
        Dim number As Long = Int64.MaxValue
        If BigInteger.op_GreaterThan(bigNumber,number) Then
        
        End If
   End Sub
End Module