本帖最后由 mmxleaf 于 2012-09-17 12:26:30 编辑

解决方案 »

  1.   

    你的项目.net版本必须是4.0以上
    using System.Numerics;
    是BigInteger ,不是bigint
    BigInteger number = Int64.MaxValue ^ 5;
      

  2.   


    还是不行,是不是我的VS2010问题啊
    输入System. 后面的列表中没有Int64出来,奇怪了。
      

  3.   


    VS2010默认就是.NET4.0 ,System. 后面也是看不到Numerics ,难道重装 .NET4.0框架
      

  4.   

    工程先添加引用  System.Numerics.dll然后写
    using System.Numerics; BigInteger xx;就可以使用了
      

  5.   

    使用例子
    http://msdn.microsoft.com/zh-cn/library/system.numerics.biginteger.aspx
      

  6.   

    问题解决 感谢 net_lover、hhddzz