More details of that compiler can be found here: http://www.mono-project.com/docs/about- ... es/csharp/
1) Download and install Mono for Windows from here:
http://www.go-mono.com/mono-downloads/download.html
The installer should be run in the default folder location:
Code: Select all
C:\Program Files\Mono-3.2.3
Code: Select all
C:\Program Files\Mono-3.2.3\bin\
To test the PATH setting, start Zeus, use the Tools, DOS Command Line menu and type in this command line:
Code: Select all
mcs.bat -?
Code: Select all
mcs.bat $fn
Code: Select all
using System;
public class HelloWorld
{
static public void Main ()
{
Console.WriteLine ("Hello Mono World");
}
}
Code: Select all
Directory of c:\temp
12/08/2014 07:28 PM 3,072 hello.exe
Code: Select all
Menu: Run '$fb.exe'
Program: mono.exe $fb.exe
Capture Stdout and stderr
Code: Select all
Hello Mono World