Just a general blog about one of first project created in C# most people do it and its most common way to start C#.
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); } } } |