将dll包含到Visual Studio项目中[关闭]

问题描述 投票:-1回答:1

我需要在Visual Studio项目中读取一个mat文件。我在Windows 10 64位上使用Visual Studio 2015 32位。我已经使用NuGet Package Manager安装了一个MatFileHandler库,并获得了一个MatFileHandler.dll文件,但我不知道如何使用它。在程序中我写了use MatFileHandler但链接器没有看到这个。请不要评判我,我是Visual Studio的新手。

c++ visual-studio nuget-package .net-standard-2.0
1个回答
0
投票

MatFileHandler库不是本机C ++ DLL。这是.NET程序集,它取决于.NETStandard 2.0

您应该创建.NET应用程序并将此NuGet包添加到它。 Here是有关如何创建.NET Core应用程序的分步说明。

© www.soinside.com 2019 - 2024. All rights reserved.