如何从 C++/CLI 应用程序调用 C# .dll?

发布于 2024-08-04 01:21:51 字数 427 浏览 3 评论 0原文

我正在尝试从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷爱 2024-08-11 01:21:51

也许尝试“LumenWorks”(基于 codeproject 上的文章)?并在行尾添加 ;

Maybe try "LumenWorks" (based on article on codeproject)? And add ; at the end of line.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文