Today I come accross a problem. I have to generate a hash total from a 20 digits long number value , add some thing to the number and include in a text file. My problem is that all integer value type cannot hold such a long number.
dim BigNum1 as double = CDbl((TextBox1.Text)).ToString("00000000000000000000")
'BigNum1' gets the value 1000000000000000000000 (21 digits) for the textbox value of "99999999999999999999" (20 digits). This creates problem in hash total calculation as it is based on string manipulation like substring, Left() or Right() etc.
Do any one know any solution to the problem Please share. Thanks in advance !