gpt4 book ai didi

c# - 从c#dll中读取方法

转载 作者:行者123 更新时间:2023-11-30 21:53:27 24 4
gpt4 key购买 nike

我已经将以下代码编译成汇编文件test.dll:

namespace dll_test
{
public class Class1
{
public int DoMagic()
{
return 12;
}
}
}

我想使用 DLL Export Viewer 检查我的 dll,但是当我这样做时我没有看到任何功能。

enter image description here

那么问题出在哪里呢?

最佳答案

您必须将函数添加到 dll 导出表中。在此表中是您可以在可执行文件中使用的所有函数的名称。要在 C# 中执行此操作,您必须添加非托管导出(DllExport for .Net)(https://www.nuget.org/packages/UnmanagedExports)。

然后像这样在静态方法中添加 DllExport:

[DllExport("DoMagic", CallingConvention=System.Runtime.InteropServices.CallingConvention.StdCall)]
public static int DoMagic()
{
return 12;
}

您可以在 https://sites.google.com/site/robertgiesecke/Home/uploads/unmanagedexports#TOC-C- 上找到更多信息: 或 msdn: https://msdn.microsoft.com/en-us/library/z4zxe9k8.aspx

关于c# - 从c#dll中读取方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33844718/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com