Hem / Tips & tricks
using System; namespace helloworld{ class helloworld { [STAThread] static void Main(string[] args) { Console.WriteLine("Hello world!"); Console.ReadLine(); } } }