1 2 3 4 5
public static void WriteCenter(string text) { System.Console.SetCursorPosition(System.Console.WindowWidth/2 - text.Length / 2, System.Console.CursorTop); Console.WriteLine(text); }