Mega Code Archive

 
Categories / C# Tutorial / Development
 

Adds a total of 4 blank lines (then beep again!)

using System; using System.Collections.Generic; using System.Text;   class Program   {     static void Main(string[] args)     {        Console.WriteLine("All finished.\n\n\n\a");     }   }