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

bigint 怎么不能使用
刚学C#,用的VS2010,为什么我使用bigint说我没有using 引用
我只引用了 using System;

------解决方案--------------------
引用System.Numerics.dll程序集
------解决方案--------------------
工程先添加引用 System.Numerics.dll

然后写
using System.Numerics;

 BigInteger xx;就可以使用了