如何在 VS 2010 中使用 BigInteger
我一直在尝试使用 BigInteger 类型,这应该是 .NET Framework 4.0 中的新类型。
我似乎无法访问它,并且在尝试通过使用 System.Numerics 引用它时出现错误。
知道我做错了什么吗?抱歉,如果这是一个愚蠢的问题......
I have been trying to use the BigInteger type, that is supposedly new in .NET Framework 4.0.
I don't seem to be able to get to it, and get an error when trying to reference it via Using System.Numerics.
Any idea what I'm doing wrong? Sorry if this is a stupid question...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
添加引用 System.Numerics 程序集到您的项目中。
a.在解决方案资源管理器中,右键单击项目节点,然后单击添加引用。
b.在添加引用对话框中,选择.NET选项卡。
c.选择System.Numerics,然后单击确定。
添加导入 System.Numerics 的 using 指令 命名空间:
使用 BigInteger结构:
Add a reference to the System.Numerics assembly to your project.
a. In Solution Explorer, right-click the project node and click Add Reference.
b. In the Add Reference dialog box, select the .NET tab.
c. Select System.Numerics, and then click OK.
Add a using directive importing the System.Numerics namespace:
Use the BigInteger structure:
您是否添加了对 System.Numerics 的引用?
Did you add a reference to System.Numerics?
添加对 System.Numerics 程序集的引用。
添加
using System.Numerics;
语句Add a Reference to System.Numerics assembly.
Add
using System.Numerics;
statement您是否已将项目引用(项目...添加引用...)添加到 System.Numerics 中?
Have you added a project reference (Project... Add Reference...) to System.Numerics?