Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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