如何从 C++/CLI 应用程序调用 C# .dll?
我正在尝试从 C++ 调用 LumenWorks .csv 文件读取库 /CLI 应用程序存在一些问题。我添加了对 LumenWorks.Framework.IO.dll 的依赖项,但是当我尝试使用该库时:
namespace MyNamespace
{
using namespace Lumenworks::Framework::IO::Csv;
// <My code definitions here>
}
我收到一条消息,指出编译器无法识别“Lumenworks”。我是否需要从源代码引用头文件,或者有没有办法从 .dll 中获取相同的信息?
I'm trying to call the LumenWorks .csv file reading library from a C++/CLI application and having some issues. I've added a dependancy on LumenWorks.Framework.IO.dll
but when I try to then use the library:
namespace MyNamespace
{
using namespace Lumenworks::Framework::IO::Csv;
// <My code definitions here>
}
I get a message that the compiler doesn't recognise 'Lumenworks'. Do I need to reference header files from the sources or is there a way to get the same information from the .dll?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许尝试“LumenWorks”(基于 codeproject 上的文章)?并在行尾添加
;
。Maybe try "LumenWorks" (based on article on codeproject)? And add
;
at the end of line.