Interactive Text File Reader with Navigation in C#

In this exercise, you will implement a basic text file reader in C# that displays 21 lines of text at a time. The program will allow users to navigate through the file using the up and down arrow keys, and exit the reader using the ESC key.

- To achieve this, the program will include three key methods:
- ReadFile: Reads the text file and stores its content in memory for efficient navigation.
- ShowMenu: Clears the console, sets up the top and bottom lines of the display (row 23), changes colors using Console.BackgroundColor and Console.ForegroundColor, and positions the cursor correctly for text display.
- ShowFrom: Writes 21 lines to the console, taking into account the position of the first line to be displayed.

The main program loop will follow a structured logic:

- ShowMenu to display the UI elements.
- ShowFrom to display the text.
- ReadKey to capture user input for navigation.
- Repeat the process until the user presses ESC to exit.

This exercise will help you develop skills in handling text files, managing console output, and implementing user navigation controls in C#.



Group

Dynamic Memory Management in C#

Objective

1. Read a text file and store its content in memory.
2. Display 21 lines of text at a time on the console.
3. Allow the user to scroll up and down using the arrow keys.
4. Display a menu at the bottom of the screen to indicate available controls.
5. Use Console.SetCursorPosition, ConsoleColor, and Console.Clear for formatting.
6. Exit the program when the ESC key is pressed.

Provide your basic text file reader here, which displays 21 lines of text and allows the user to navigate using the up and down arrow keys, and exit using the ESC key.

Hints:
The text file reader should have three methods:

- ReadFile (reads the text file and stores it in memory)
- ShowMenu (clears the console, sets the top and bottom lines of the console [row 23], changes colors using Console.BackgroundColor, Console.ForegroundColor, ConsoleColor and Console.SetCursorPosition(column, row). Once the menu is prepared, remember to set the cursor in the second row).
- ShowFrom (writes 21 lines, considering the position of the first line to write)

The main program logic should be as follows: ShowMenu → ShowFrom → ReadKey → ShowMenu → ShowFrom → ReadKey...

Example C# Exercise

 Copy C# Code
using System;
using System.Collections.Generic;
using System.IO;

class TextFileReader
{
    static List lines = new List(); // List to store file lines
    static int startLine = 0; // Track the first visible line
    const int maxLines = 21; // Number of lines to display at a time

    static void Main()
    {
        ReadFile("sample.txt"); // Read the file into memory

        ConsoleKey key;
        do
        {
            ShowMenu(); // Display the menu UI
            ShowFrom(startLine); // Display text starting from the current position
            key = Console.ReadKey(true).Key; // Read user input (without displaying the key)

            if (key == ConsoleKey.DownArrow && startLine + maxLines < lines.Count)
            {
                startLine++; // Move down one line
            }
            else if (key == ConsoleKey.UpArrow && startLine > 0)
            {
                startLine--; // Move up one line
            }

        } while (key != ConsoleKey.Escape); // Exit on ESC key
    }

    static void ReadFile(string filePath)
    {
        if (File.Exists(filePath)) // Check if file exists
        {
            lines = new List(File.ReadAllLines(filePath)); // Read all lines into list
        }
        else
        {
            Console.WriteLine("File not found!");
            Environment.Exit(1); // Exit if the file doesn't exist
        }
    }

    static void ShowMenu()
    {
        Console.Clear(); // Clear the console
        Console.BackgroundColor = ConsoleColor.DarkBlue; // Set background color
        Console.ForegroundColor = ConsoleColor.White; // Set text color

        Console.SetCursorPosition(0, 23); // Set cursor at row 23 for menu
        Console.WriteLine(new string(' ', Console.WindowWidth)); // Clear the menu area
        Console.SetCursorPosition(0, 23);
        Console.Write("Use UP/DOWN arrows to navigate. Press ESC to exit.");

        Console.ResetColor(); // Reset colors after writing menu
        Console.SetCursorPosition(0, 1); // Set cursor for text display
    }

    static void ShowFrom(int start)
    {
        Console.SetCursorPosition(0, 1); // Move cursor to second row
        for (int i = start; i < start + maxLines && i < lines.Count; i++)
        {
            Console.WriteLine(lines[i]); // Print the line
        }
    }
}

 Output

//Code Output (Example with "sample.txt"):
Line 1: Introduction to C# Programming  
Line 2: Understanding Variables and Data Types  
Line 3: Control Flow Statements  
...  
Line 21: Object-Oriented Programming Concepts  

Use UP/DOWN arrows to navigate. Press ESC to exit.  

//User presses the down arrow key
Line 2: Understanding Variables and Data Types  
Line 3: Control Flow Statements  
Line 4: Loops and Iteration  
...  
Line 22: Working with Collections  

Use UP/DOWN arrows to navigate. Press ESC to exit.

Share this C# Exercise

More C# Practice Exercises of Dynamic Memory Management in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Implementing a Dictionary with a Hash Table in C#

    In this exercise, you will create a dictionary using a hash table in C#. The goal of this task is to practice implementing a hash table, a highly efficient data structure used for ...

  • Checking Balanced Parentheses in a Sequence in C#

    In this exercise, you need to implement a function that checks whether a sequence of parentheses is balanced. A sequence of parentheses is considered balanced if every opening pare...

  • Merging and Sorting File Contents Alphabetically in C#

    In this exercise, you will create a program that reads the contents of two different text files, merges them into a single collection, and then sorts the collection alphabetically....

  • 3D Point Data Structure with ArrayList in C#

    In this exercise, you will create a structure called "Point3D" that represents a point in 3D space with three coordinates: X, Y, and Z. You will then create a program with a menu t...

  • Search for Sentences in a Text File in C#

    In this exercise, you will create a program that reads the content of a text file and saves it into an ArrayList. The program will then ask the user to enter a word or sentence and...

  • Implementing a Custom Queue in C#

    In this exercise, you need to implement a queue in C#. A queue is a data structure that follows the FIFO (First In, First Out) principle, meaning the first element to enter is the ...