jSignature icon indicating copy to clipboard operation
jSignature copied to clipboard

VB.NET Base30 Error Found

Open n1njatalon opened this issue 6 years ago • 0 comments

I was not able to convert base30 to native and then back from native to base30. I was able to compare c# test units and found the issue lies in "ToBase30" function.

The line that causes these issues is: Dim div As Integer = num / mag

when it should be

Dim div As Integer = num \ mag

n1njatalon avatar Jan 21 '20 04:01 n1njatalon