tags:

views:

17

answers:

1

I have a mac application(written with xcode) i have to write a .net application that uses this code. what is the best practice in this case?

+2  A: 

If it's in objective-c, then you should probably try to get it working with Cocotron, not .NET.

If you absolutely need .NET. Use the GNU objective-c compiler to make .lib files for as much as possible and then I guess rewrite the GUI in .NET. Wrap the .lib in a C++/CLI assembly with managed interfaces that you can call from your .NET application.

Lou Franco
thanks i'm going to try that
Itai Zolberg