Example #1
0
        public static void Display()
        {
            // Clear the console
            FastGuiUtils.ClearConsole(true);

            // Create the breakline pipe
            // Initialize the string builder. We need a direct access to the char[]
            var breakLineBuilder = new StringBuilder(new string('═', ResolutionHandler.GetResolution(0)));

            // Change first and last char to the '*', for style purposes.
            breakLineBuilder[0]   = '╠';
            breakLineBuilder[^ 1] = '╣';