A simple C# console application that displays a random inspirational quote each time you press Enter.
Made for beginner C# practice — clean, expandable, and perfect for learning the basics of loops, lists, and console interaction.
- Displays a random quote from a predefined list.
- Press Enter to see another quote.
- Press Q to quit the program.
- Minimal, colorful console interface.
The app:
- Stores quotes inside a
List<string>
. - Uses the
Random
class to select one at random. - Clears the console and displays a new quote each time you hit Enter.
- Loops until you press Q to exit.
Simple, right? Yet it covers essential programming concepts like:
- Variables
- Lists and Loops
- Conditional statements
- Random number generation
- Console input/output