How can I use C # code inside my Erlang code?

I need to use the input functions implemented in C # in my Erlang code. What interfaces exist to link Erlang with C #?

+5
source share
1 answer

First you need to export C # to unmanaged code and then use a COM interface like

And I'm not sure if there is a way for mono. By the way, I suggest using ".NET code" instead of "C # code".

welcome to SO, ymn

+7
source

All Articles