2
我試圖使用(https://www.nuget.org/packages/UnmanagedExports)導出一些我的功能,但它似乎沒有工作。將託管功能導出到非託管
using System;
using System.Collections.Generic;
using System.Text;
using RGiesecke.DllExport;
using System.Runtime.InteropServices;
namespace Verificare
{
static class Exports
{
[DllExport]
public static void Salut()
{
}
}
}
我使用的DLL資源管理器查看導出的函數,不幸的是,在我的DLL沒有導出函數。
你得到了什麼結果或錯誤,預期結果與實際結果有什麼關係。你有什麼嘗試sofar –
你正在爲「x86,ia64或x64」?該文檔明確指出,在構建AnyCpu時不能導出函數。 – Ani
我試過x86/x64和同樣的問題。預期的結果?我應該能夠看到使用dll資源管理器輸出的功能,我沒有看到atm。 – Jonnie