Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Exporting dll functions to unmanaged programs

Tags:

c#

How can I export my c# dll functions to be able to use them from unmanaged programs.

  • For example : Dll in c# and the application in Delphi/c++ .

I don't have the source of the exe because is not Open S. Can't use COM.

like image 285
Jax Avatar asked Jan 16 '23 10:01

Jax


1 Answers

I recommend using Robert Giesecke's Unmanaged Exports.

like image 180
David Heffernan Avatar answered Jan 28 '23 05:01

David Heffernan