4

我发现允许在 Linux 中托管的 CLR 上执行 C# 程序集的代码但我只想从 C# dll 调用一些方法。我已经尝试过这个这个,但我不知道如何在 Linux上正确包含或重新定义:

ICLRMetaHost, ICLRRuntimeInfo, ICLRRuntimeHost, CLSID_CLRMetaHost,
IID_ICLRMetaHost, IID_ICLRRuntimeInfo, CLSID_CLRRuntimeHost,
IID_ICLRRuntimeHost

您是否有任何想法或链接到一些在 Linux 上使用 CoreCLR 从 C++ 调用 C# 的代码?

我只对 Linux 上的 CoreCLR 感兴趣(不是 Mono!)。

4

1 回答 1

3

好的,我发现为了获得 C# 函数的委托,您必须使用 coreCLR 提供的这三个函数:

// this one first, to initialize coreCLR
int (coreclrInitializeFunction)(
            const char* exePath,
            const char* appDomainFriendlyName,
            int propertyCount,
            const char** propertyKeys,
            const char** propertyValues,
            void** hostHandle,
            unsigned int* domainId);

// this one to get delegate to your C# function
int (coreclrCreateDelegateFunction)(
              void* hostHandle,
              unsigned int domainId,
              const char* entryPointAssemblyName,
              const char* entryPointTypeName,
              const char* entryPointMethodName,
              void** delegate);

// this one on the end, to close coreCLR
int (coreclrShutdownFunction)(
            void* hostHandle,
            unsigned int domainId);

这是我调用 C# 函数的示例代码,该函数在 C++ 对象上调用 C++ 方法:https ://github.com/Marqin/simpleCoreCLRHost

于 2016-02-04T11:39:53.307 回答