✅ is Assembly.Load(byte[] coff) not supported for mixed mode assemblies on windows?
This doesn't seem to be documented anywhere but trying to load it results in an exception being thrown by the windows antivirus framework.
Not that I would really expect it to work since there isn't any officially supported way to load a native library from memory on Windows.
2 Replies
Unknown User•5mo ago
Message Not Public
Sign In & Join Server To View
even without an AV, I wouldn't expect this to work
since afair the native code in mixed mode binary relies on on the OS binary loader
and windows one doesn't support loading from memory
pretty sure that writing a custom loader would basically be almost as much work as getting C++/CLI cross platform