Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I need to use come features implemented in C# into my Erlang code. What interfaces exist to tie Erlang with C#?

like image 399
ymn Avatar asked Aug 20 '12 04:08

ymn


1 Answers

First you need to export C# into un-managed code then use COM interface for example

  • Exposing .NET Framework Components to COM
  • How to Automate Exporting .NET Function to Unmanaged Programs

And I'm not sure if there is possible way for mono. By the way I suggest to use ".NET code" instead of "C# code".

welcome to SO, ymn

like image 69
cnd Avatar answered Sep 24 '22 17:09

cnd