To install, use this command on Terminal
sudo apt-get install mono-gmcsหรือ
or
sudo apt-get install mono-dmcsหมายเหตุ
dmcs ใช้กับ .NET 4.0
gmcs ใช้กับ .NET 2.0 และ .NET 3.5
mono-runtime จะถูกติดตั้งไปพร้อมกัน
Notice
dmcs references the 4.0-profile libraries (the APIs as defined in .NET 4.0) and supports C# 4.0
gmcs references the 2.0-profile libraries (the APIs as defined in .NET 2.0 and .NET 3.5) and exposes the full C# 3.0 language.
mono-runtime is already installed.
สำหรับการทดสอบ ให้ใส่โค้ดด้านล่างใน gedit แล้วบันทึกเป็น helloworld.cs
To test, insert code below in gedit and save as helloworld.cs
- using System;
- namespace HelloWorld
- {
- class Hello
- {
- static void Main()
- {
- Console.WriteLine("Hello World!");
- Console.WriteLine("Press any key to exit.");
- Console.ReadKey();
- }
- }
- }
สำหรับการคอมไพล์ ให้ใช้คำสั่งต่อไปนี้ใน Terminal (helloworld.exe จะถูกสร้างขึ้น)
To compile, use this command in Terminal (helloworld.exe will be created)
dmcs helloworld.cs
สำหรับการรัน ให้ใช้คำสั่งต่อไปนี้ใน Terminal
To run, use this command in Terminal
mono helloworld.exe
No comments:
Post a Comment