Is there a way to host the .NET CLR runtime and register MethodImplOptions.InternalCall functions? (This is not a topic about P/Invoke)
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Generic Generics in Managed C++
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
IMetaDataImport
is your best bet, but can't really vouch for that. This seems like a specific task for C++/CLI.SSCLI code (specifically clr\src\vm\ecall.cpp) suggests that there is no way to register
InternalCall
methods, because the crucialgECClasses
table is hardcoded.