Mega Code Archive
BigInteger Parse Method (String, NumberStyles, IFormatProvider)
Imports System.Numerics
Imports System
Imports System.Globalization
Module Example
Public Sub Main()
Console.WriteLine(BigInteger.Parse(" -9999 ", NumberStyles.Integer, CultureInfo.CurrentCulture))
End Sub
End Module