Apple - Can I compile .NET C# code on my Mac?

Check out the Mono Project. It may be what you are looking for.

http://www.mono-project.com/Mono:OSX

MonoDevelop is a cross-platform IDE primarily designed for C# and other .NET languages. MonoDevelop enables developers to quickly write desktop and ASP.NET Web applications on Linux, Windows and Mac OSX. MonoDevelop makes it easy for developers to port .NET applications created with Visual Studio to Linux and Mac OSX maintaining a single code base for all platforms.


You can install it with homebrew:

brew install mono

Then you can use it with:

mcs hello.cs
mono hello.exe

If you have a Mac you can compile C# like this:

Compile: mcs fileName.cs
Run: mono fileName.exe

If you don't have Mono installed on your Mac, you can google it and install it and then you will be good to go. You don't need Windows to do this.

Tags:

Windows

Imac