Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manu4kym/to-do
To-do console app with a clean ui
https://github.com/manu4kym/to-do
c-sharp console-app console-tables
Last synced: about 1 month ago
JSON representation
To-do console app with a clean ui
- Host: GitHub
- URL: https://github.com/manu4kym/to-do
- Owner: ManU4kym
- Created: 2024-11-16T12:44:31.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-16T13:36:15.000Z (about 1 month ago)
- Last Synced: 2024-11-25T12:15:44.740Z (about 1 month ago)
- Topics: c-sharp, console-app, console-tables
- Language: C#
- Homepage: http://dotnet
- Size: 80.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# To-Do Console App (C#)
A basic To-Do list application built with C# that allows users to add, remove, and view tasks in the console.
## Features
- Add tasks to your To-Do list.
- Remove tasks from the list.
- View all tasks currently in the list.## Installation
1. Clone the repository:
```bash
git clone [email protected]:ManU4kym/To-do.git
```2. Open the project in Visual Studio or any C# compatible IDE.
3. Build and run the application by pressing `F5` or using the terminal:
```bash
dotnet add package ConsoleTables
```
```bash
dotnet run
```## Usage
The application will prompt you with a menu to choose an action:
1. **Add task**: Enter a task to add it to the list.
2. **Remove task**: Enter the task you want to remove from the list.
3. **View tasks**: Display all the tasks currently in the list.
4. **Exit**: Exit the application.### Sample Workflow:
```text
To-Do List
1. Add task
2. Remove task
3. View tasks
4. Exit
Choose an option: 1
Enter task: Buy groceries
Press Enter to continue...To-Do List
1. Add task
2. Remove task
3. View tasks
4. Exit
Choose an option: 3
Tasks:
- Buy groceries
Press Enter to continue...
```