日期:2014-05-17  浏览次数:21192 次

16进制字符串如何转换成BigInteger(大数)类型
例如:str="E87AC12BDC3764CAB1987309CED..."
怎样转换成等效的大数类型,

------解决方案--------------------
本帖最后由 net_lover 于 2012-02-21 14:02:52 编辑
http://msdn.microsoft.com/zh-cn/library/system.numerics.biginteger.aspx

System.Numerics.BigInteger.Parse("0" + str,System.Globalization.NumberStyles.HexNumber)