예제 #1
0
 public ConOut Row(string[] cols, int[] colLengths)
 {
     using (new InkScope())
     {
         ClearRow();
         Console.Write(ConUtility.Row(cols, colLengths));
         return(this);
     }
 }
예제 #2
0
        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);
        }