Why DllImport doesnt work with quot;__Internalquot;?(为什么 DllImport 不能与“__Internal一起使用?)
问题描述
我有 C++ 共享库,它为 Linux 和 Windows 导出方法 int MyFunc()
.
I have C++ shared library which export method int MyFunc()
for both Linux and Windows.
从 C# 中,我使用以下签名调用 MyFunc
.
From C# I do call the MyFunc
with following signature.
[DllImport(@"__Internal", CharSet = CharSet.Ansi, EntryPoint = "MyFunc")]
static extern unsafe int MyFunc();
// Later I'm using :
MyFunc();
此代码在 Windows 上运行良好,但在 linux 内部会抛出异常 EntryPointNotFound
.
This code works fine on windows but inside linux this throw an exception EntryPointNotFound
.
我已经用 -rdynamic 选项编译了我的 C++ 库,我可以看到 MyFunc 被导出为带有 nm 的 D 标志,但这也没有帮助我.
I have compiled my C++ library with -rdynamic option and I can see MyFunc is exported as D flag with nm but this also didn't help me.
如果我只是将 DllImport(@"__Internal"
更改为 DllImport(@"mys.so"
则无需任何更改,那么在 linux 上可以正常工作,但我必须在 Windows 中使用 DllImport(@"mys.dll"
这会破坏代码交叉兼容功能.
所以我想避免这种情况.
Without any change if I simply change DllImport(@"__Internal"
to DllImport(@"mys.so"
then will work fine on linux but then I have to use DllImport(@"mys.dll"
in windows which this breaks code cross compatible feature.
So I want to avoid this.
我看不出为什么 __Internal
不能在 Linux 上运行的任何错误.
请注意,我使用的是单声道.
I don't see any mistake that why __Internal
isn't working on Linux.
Note that I'm using mono.
知道为什么这在 Linux 上不起作用吗?
Any idea why this is not working on Linux ?
推荐答案
你可以在windows和linux上使用这个:
You can use this on both windows and linux:
[DllImport ("mys")]
将根据平台添加适当的扩展名(这适用于 .NET 和单声道).
The appropriate extension will be added according to the platform (and this works on both .NET and mono).
这篇关于为什么 DllImport 不能与“__Internal"一起使用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 DllImport 不能与“__Internal"一起使用?
基础教程推荐
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- c# Math.Sqrt 实现 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01