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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.