/// <summary> /// Add a simple blank line for formatting /// </summary> public void AddBlankLines(int numberOfLines = 1) => Add(Art.BlankLines(numberOfLines));
public ConsoleScreen(string header = null, ConsoleColor backgroundColor = ConsoleColor.Black, ConsoleColor forgroundColor = ConsoleColor.Green) : this(header == null ? null : Art.AsHeader(header), backgroundColor, forgroundColor) { }