Exemplo n.º 1
0
        private static void CenterCursor(IConsoleProxy proxy, int textLength)
        {
            // Get center, accounting for overflow.
            int consolePointer = (System.Console.WindowWidth - textLength) / 2;

            if (consolePointer < 0)
            {
                consolePointer = 0;
            }

            proxy.SetCursorPosition(consolePointer, System.Console.CursorTop);
        }