MemoryModule icon indicating copy to clipboard operation
MemoryModule copied to clipboard

Why not support C#'s DLL?

Open send010 opened this issue 5 years ago • 3 comments

Why not support C#'s DLL?

send010 avatar Nov 01 '18 05:11 send010

https://github.com/fancycode/MemoryModule/issues/40

sr-tream avatar Nov 18 '18 21:11 sr-tream

You don't need it for C# , C# has it already and you can even use https://github.com/Fody/Costura to automate it.

NothingFaceX avatar Mar 13 '19 00:03 NothingFaceX

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

Elmue avatar Jun 22 '20 17:06 Elmue