Example #1
0
 public bool HandleKey(ConsoleKeyInfo keyInfo, Shell shell)
 {
     if (shell.CursorIndex <= 0)
     {
         return(false);
     }
     ConsoleUtilities.BackCursor();
     shell.CursorIndex -= 1;
     return(false);
 }