MemoryModule
MemoryModule copied to clipboard
Why not support C#'s DLL?
Why not support C#'s DLL?
https://github.com/fancycode/MemoryModule/issues/40
You don't need it for C# , C# has it already and you can even use https://github.com/Fody/Costura to automate it.
You question is not clear. Do you want to load a C# assembly or an unmanaged DLL?
1.) C# Assemblies can easily be loaded from memory with Assembly.Load(Byte[]). You do NOT need any Fody project for that, as NothingFaceX says!
2.) If you want to load an unmanaged DLL into a C# process read my comment here: https://github.com/fancycode/MemoryModule/issues/99