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

c#, erlang, interface

Solution

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

Problem

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

Original source