Exemple #1
0
 /// <summary>
 /// showNavigator(int, int) a function to show/display the navigator in console screen.
 ///
 /// parameters:
 ///     left: indicating the left posotion of the console window.
 ///     top: indicating the top posotion of the console window.
 /// </summary>
 private void showNavigator(int left, int top)
 {
     ChangeConsoleColors.to_Navigator_ForegroundColor();
     Console.SetCursorPosition(left, top);
     Console.Write("->");
     Console.SetCursorPosition(left - 1, top);
     ChangeConsoleColors.to_Console_Default_ForegroundColor();
 }