Reputation: 735
I have no experience over C# and i do not know how to use those binaries i downloaded there : http://mathnetnumerics.codeplex.com/releases/view/101319
How do i include and build those in my project so i can make a standalone when the project is done?
Thanks!
Upvotes: 0
Views: 12535
Reputation: 21
In Visual Studio 2019 it's much easier to install the MathNet.Numerics package:
Upvotes: 0
Reputation: 33863
Install the required libraries and packages via the Nuget Package Console in Visual Studio.
Click File -> Library Package Manager -> Package Manager Console. Then type the following command.
PM> Install-Package MathNet.Numerics
This will install the package and provide you with your dlls.
Upvotes: 4
Reputation: 1361
In my opinion, the easiest way is to drop all the files in the "bin" folder. Then, right click on the "references" folder in your project, click Add --> Add Reference. Next, click the "Browse" tab, navigate to your "bin" folder, and select the files. Now the libraries are available to access through your source code.
You can access the methods and such by inserting "using" statements at the top of your classes, like "using MathNet.Numerics"
Upvotes: 0
Reputation: 40980
if you are using Visual Studio
then you can add these libraries from Add Reference option in your project.
Upvotes: 1
Reputation: 13887
Add a reference to the binaries and include the namespace of whatever part of that binary you're using in your file.
Upvotes: 1
Reputation: 4328
To use an external binary, you will need to make a reference to it. This might guide you
http://msdn.microsoft.com/en-us/library/7314433t%28v=vs.80%29.aspx
Upvotes: 0