tags:

views:

66

answers:

1

I have a DLL written in C# which is acessed by a native EXE (written in Delphi) via COM. Now I was asked to make it work with Mono (on Windows, not Linux) instead of Microsoft .NET Framework.

Is it possible to be done? If it is, how can I do it?

+1  A: 

Possibly, yes.

Mono has had COM-callable wrappers for a while. Check: http://www.mono-project.com/COM_Interop.

Probably the easiest thing to do is to download SharpDevelop and try to compile your existing code for Mono.

codekaizen