Mega Code Archive

 
Categories / VB.Net / Data Types
 

Compare with UInt64 MaxValue

Imports System.Numerics Imports System Module Example    Public Sub Main()         Dim number As BigInteger = BigInteger.Parse("9999999")         If number <= UInt64.MaxValue Then            ' Do something.         Else            ' Do something else.         End If          End Sub End Module