Exemplo n.º 1
0
 public bool HandleKey(ConsoleKeyInfo keyInfo, Shell shell)
 {
     if (shell.CursorIndex >= shell.Characters.Length)
     {
         return(false);
     }
     ConsoleUtilities.AdvanceCursor();
     shell.CursorIndex += 1;
     return(false);
 }