AndrewHoward 0 Posted May 21, 2021 (edited) Hi, I have an application which loads & uses an unmanaged dll. All I have to do is drop the dll it in a specific folder. Can I use a .Net dll instead ? (I know the .Net dll needs to expose the same functions which are in the unmanaged dll) Can an unmanaged & managed DLLs be used interchangeably ? Thanks Edited May 21, 2021 by AndrewHoward Made it clearer Share this post Link to post
David Heffernan 2345 Posted May 21, 2021 Yes. But you need to use a tool like UnmanagedExports. 1 Share this post Link to post
AndrewHoward 0 Posted May 24, 2021 On 5/21/2021 at 6:52 PM, David Heffernan said: Yes. But you need to use a tool like UnmanagedExports. Thank you. Would using a managed C# DLL in unmanaged Delphi app cause any CLR issues ? Thanks Share this post Link to post
David Heffernan 2345 Posted May 24, 2021 4 hours ago, AndrewHoward said: Thank you. Would using a managed C# DLL in unmanaged Delphi app cause any CLR issues ? Thanks Don't really know what you mean. Share this post Link to post
Guest Posted May 25, 2021 Maybe this can help or inspire: https://www.atozed.com/crosstalk/ Share this post Link to post