Mono

Z MetaCentrum
Skočit na navigaci Skočit na vyhledávání

Description

Mono is a software platform designed to allow developers to easily create cross platform applications. Sponsored by Xamarin, Mono is an open source implementation of Microsoft's .NET Framework based on the ECMA standards for C# and the Common Language Runtime.

License

GPL

Usage

Upcoming modulesystem change alert!

Due to large number of applications and their versions it is not practical to keep them explicitly listed at our wiki pages. Therefore an upgrade of modulefiles is underway. A feature of this upgrade will be the existence of default module for every application. This default choice does not need version number and it will load some (usually latest) version.

You can test the new version now by adding a line

source /cvmfs/software.metacentrum.cz/modulefiles/5.1.0/loadmodules

to your script before loading a module. Then, you can list all versions of mono and load default version of mono as

module avail mono/ # list available modules
module load mono   # load (default) module


If you wish to keep up to the current system, it is still possible. Simply list all modules by

module avail mono

and choose explicit version you want to use.

How to

Hello world, hello.cs

using System;
 
public class HelloWorld
{
	static public void Main ()
	{
		Console.WriteLine ("Hello Mono World");
	}
 
}

Compile and run by

gmcs hello.cs
mono hello.exe

Documentation

http://www.mono-project.com/Start

Homepage

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