kellyethridge / VBCorLib

The VBCorLib framework brings many of the powerful .NET classes to VB6.
http://www.kellyethridge.com/vbcorlib/
MIT License
112 stars 28 forks source link

BigInteger not correctly parsing non-exponent string with NumberStyles.AllowExponent defined #91

Closed kellyethridge closed 3 years ago

kellyethridge commented 3 years ago

BigInteger is not correctly parsing a decimal number with the NumberStyles.AllowExponent without an "E" or "e" encountered. BigInteger.Parse("123.00", NumberStyles.AllowExponent) returns a BigInteger value of "12300" instead of "123".

kellyethridge commented 3 years ago

Duplicate issue