-1

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.

Nikita
  • 6,270
  • 2
  • 24
  • 37
mrWalker
  • 1
  • 3

1 Answers1

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