public ConOut Row(string[] cols, int[] colLengths) { using (new InkScope()) { ClearRow(); Console.Write(ConUtility.Row(cols, colLengths)); return(this); } }
public ConOut Row(string[] cols, int[] colLengths) { var top = Console.CursorTop; ClearRow(); Console.Write(ConUtility.Row(cols, colLengths)); if (Console.CursorTop != top) { Console.CursorTop = top; } return(this); }