I want to multiply this number:
5374711027510012111075768211110475111691021051041057653548210911210211112250867 66690120741165250567278571217510410482757487
with this number:
4956889911565576581818287977011111065876967103548749122901151091038910610511189
But when I cast the result to string I get this:
2.66418508698446E+201
Which is:
266418508698446000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000
Not exactly the precise number, those zeros represent loss of precision, am I right?
Is it possible to get the precise number (every single digit) out of this calculation using C#?
Thanks