I have an issue. I'm importing data from an excel file, data like codes and stuff. for importing I'm using LinqToExcel linqToExcel The problem is that one of the excel's columns contains codes like "A2C235425345345" or "12441523543454454". This data of this column is not formated as string or numbers. So, when read from the excel file, instead of that value "6.57621e+009". So now i need a way to convert that value back to the initial one, using C# and .NET framework 4.0
Any ideas? Thank you!
A2C235425345345code was hex, but of course the number would be massively huge. Perhaps it's a formula. – Inuyasha Jan 28 '11 at 20:47