https://github.com/adam-marianowski/dotnet-console-todos
This is a simple console application written in C# that allows users to manage a list of todos. Users can add, delete, and list todos through a menu-driven interface.
https://github.com/adam-marianowski/dotnet-console-todos
console-application csharp csharp-app csharp-code csharp-console csharp-console-app dotnet simple-project todolist
Last synced: 3 months ago
JSON representation
This is a simple console application written in C# that allows users to manage a list of todos. Users can add, delete, and list todos through a menu-driven interface.
- Host: GitHub
- URL: https://github.com/adam-marianowski/dotnet-console-todos
- Owner: adam-marianowski
- Created: 2024-11-09T01:11:48.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-11-09T01:15:43.000Z (7 months ago)
- Last Synced: 2024-11-09T02:24:29.388Z (7 months ago)
- Topics: console-application, csharp, csharp-app, csharp-code, csharp-console, csharp-console-app, dotnet, simple-project, todolist
- Language: C#
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todo Console Application
This is a simple console application written in C# that allows users to manage a list of todos. Users can add, delete, and list todos through a menu-driven interface.
## Features
- Add a new todo
- Delete an existing todo
- List all todos
- Exit the application## Getting Started
### Prerequisites
- [.NET SDK](https://dotnet.microsoft.com/download) installed on your machine.
### Running the Application
1. Clone the repository:
```sh
git clone https://github.com/your-username/your-repo-name.git
cd your-repo-name
```2. Build the application:
```sh
dotnet build
```3. Run the application:
```sh
dotnet run
```### Usage
When you run the application, you will see a menu with the following options:
[1] - Add Todo [2] - Delete Todo [3] - List all todos [4] - Exit