我想用BigInteger類從System.Numerics但如果我想寫如何添加引用System.Numerics.dll
using System.Numerics;
Numerics
是找不到的。我搜索了網頁,發現我必須添加對的引用,但我該怎麼做?
我想用BigInteger類從System.Numerics但如果我想寫如何添加引用System.Numerics.dll
using System.Numerics;
Numerics
是找不到的。我搜索了網頁,發現我必須添加對的引用,但我該怎麼做?
http://msdn.microsoft.com/en-us/library/7314433t(v=vs.80).aspx
從MSDN:
非常感謝,我做到了(yaaay!) – NiCU 2012-03-22 15:21:37
我有Visual Studio 2013 。怎麼可能沒有這個文件?我可以在哪裏安全地下載它? – user3822370 2015-08-02 03:02:25
右鍵單擊解決方案資源管理器中的「References」,然後單擊圖像中下面顯示的「Add Reference」。
在Visual Studio中,去孤子Explorer的,展開項目,右鍵點擊一個名爲「引用」文件夾中,然後單擊「添加引用」,瀏覽到您的引用(組件),找到一個你想。如果您使用的是VS 2010,只需在搜索頂部輸入「system.numerics」即可。然後,選擇參考並點擊添加,然後點擊關閉。
如果您使用的是.NET 4.0中,你可以右鍵點擊引用 - >添加引用 - >在.NET選項卡,找到
分辯點擊參考文件夾在您的解決方案和選擇添加參考。然後轉到:\ Windows \ Microsoft.NET \程序集\ GAC_MSIL \ System.Numerics \ v4.0_4.0.0.0__b77a5c561934e089(對我來說,您的路徑可能是另一個。)
您正在使用什麼版本的.Net ? System.Numerics只在4.0 + – Gage 2012-03-22 14:41:31
因此'BigInteger'附帶.net 4.0 http://msdn.microsoft.com/en-us/library/system.numerics.biginteger.aspx – 2012-03-22 14:42:47
有趣的是,很多「答案」當他已經知道他要做什麼時,他正在告訴他添加參考......他只是想知道*如何做* – MilkyWayJoe 2012-03-22 14:50:10