C # on OS X and Linux?

I have an application encoded from Visual C # Express 2008. I want to port this application to Mac OS X *. app and Linux application. How should I do it? Are there any compilers on the Internet that I can download to parse my C # source codes and output other copies of the OS?

+3
source share
2 answers

You need to use the Mono project, which supports all of these platforms. You may need to redesign your project to deal with any Windows code or features specific to the implementation of MS.net.

0

All Articles