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
Show 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.