C#导出函数dll
C# Export function dll
我使用 Robert Giesecke 的 Unmanaged-Exports 包,可以在 (https://sites.google.com/site/robertgiesecke/Home/uploads/unmanagedexports) 找到它。
我想导出一个函数,但不知何故它不起作用。函数不会导出。
我的做法:
代码:
[DllExport("test", CallingConvention = CallingConvention.StdCall)]
public static string test()
{
return "Hello World, this is the DLL";
}
我的 IDA 结果截图:
如您所见,它们是空的,因为没有导出函数。
解决方案:http://www.codeproject.com/Articles/37675/Simple-Method-of-DLL-Export-without-C-CLI
将 "DllExporter.exe" 放入您的项目文件夹。
德语文章:http://www.sotzny.de/2011/11/10/dllexport-net-ohne-ccli/
我使用 Robert Giesecke 的 Unmanaged-Exports 包,可以在 (https://sites.google.com/site/robertgiesecke/Home/uploads/unmanagedexports) 找到它。
我想导出一个函数,但不知何故它不起作用。函数不会导出。
我的做法:
代码:
[DllExport("test", CallingConvention = CallingConvention.StdCall)]
public static string test()
{
return "Hello World, this is the DLL";
}
我的 IDA 结果截图:
如您所见,它们是空的,因为没有导出函数。
解决方案:http://www.codeproject.com/Articles/37675/Simple-Method-of-DLL-Export-without-C-CLI
将 "DllExporter.exe" 放入您的项目文件夹。
德语文章:http://www.sotzny.de/2011/11/10/dllexport-net-ohne-ccli/