I need to read a mat file in a Visual Studio project. I'm using Visual Studio 2015 32bit on Windows 10 64 bit.
I have installed a MatFileHandler library using NuGet Package Manager and got a MatFileHandler.dll file but I don't know how to use it. In program I've written use MatFileHandler
but linker does not see this. Please don't judge me, I'm very new to Visual Studio.
Asked
Active
Viewed 58 times
-1
1 Answers
0
MatFileHandler library is not a native C++ dll. It's .NET assembly and it depends on .NETStandard 2.0
.
You should create .NET application and add this NuGet package to it. Here is the step-by-step instruction on how to create .NET Core application.

Nikita
- 6,270
- 2
- 24
- 37