.NET Matrix Library 6.0 Documentation
Getting started with NML 6.0
Send Feedback

Glossary Item Box

Installing the .NET Matrix Library

Download the latest version of the .NET Matrix Library from the download page of Bluebit Software. Follow the instructions of the installation program.

Referencing .NET Matrix Library from within your project.

  1. Open the Visual Studio and start a new Visual Basic or C# project.
  2. Right-click the project in Solution Explorer and then click Properties.
  3. In the Project Designer, locate the Target Framework list and select the ".NET Framework 4" option, as follows:
    • For Visual Basic projects, click the Compile tab and then click Advanced Compile Options. The Target Framework list is in the Advanced Compiler Settings dialog box. Select the ".NET Framework 4" option.
    • For Visual C# projects, the Target Framework list is on the Application tab of the Project Designer. Again make sure that the ".NET Framework 4" option is selected.
  4. On the Project menu click Add Reference...
  5. In the Add Reference dialog box select the NET tab and wait a few seconds till the list is fully updated. Depending on your project configuration select either the 32-bit or the 64-bit version of the Bluebit .NET Matrix Library 6.0 assembly.

 

Using .NET Matrix Library classes in your code.

If you are using Visual basic add the following Imports statement to your source file:

Imports Bluebit.MatrixLibrary

If you are using C# add this line:

using Bluebit.MatrixLibrary;

Now you can use the classes of the .NET Matrix Library in your code:

Dim matrixObj As New Matrix(3, 4)

.NET Matrix Library