BigInteger Subtract Method Subtracts one BigInteger value from another and returns the result
Imports System.Numerics Imports System Module Example Public Sub Main() Dim number As BigInteger = BigInteger.Subtract(Int64.MinValue, Int64.MaxValue) End Sub End Module