Menu

Sunday, April 14, 2013

[C#] การติดตั้งตัวคอมไพล์ C# บน Ubuntu
[C#] C# Compiler Installation on Ubuntu

สำหรับการติดตั้ง ให้ใช้คำสั่งต่อไปนี้ใน Terminal
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
  1. using System;
  2. namespace HelloWorld
  3. {
  4.     class Hello 
  5.     {
  6.         static void Main() 
  7.         {
  8.             Console.WriteLine("Hello World!");
  9.             Console.WriteLine("Press any key to exit.");
  10.             Console.ReadKey();
  11.         }
  12.     }
  13. }

สำหรับการคอมไพล์ ให้ใช้คำสั่งต่อไปนี้ใน 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