https://github.com/mloning/first-steps-in-csharp
My first steps using C# and .NET
https://github.com/mloning/first-steps-in-csharp
Last synced: over 1 year ago
JSON representation
My first steps using C# and .NET
- Host: GitHub
- URL: https://github.com/mloning/first-steps-in-csharp
- Owner: mloning
- Created: 2022-11-06T16:39:06.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-25T19:56:29.000Z (over 3 years ago)
- Last Synced: 2025-02-09T01:42:52.503Z (over 1 year ago)
- Language: C#
- Homepage:
- Size: 201 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# First steps in C# and .NET
## Setup
Follow the installation instructions [here]().
## Tutorials
| Name | Description |
|---|---|
| [fibonacci] | Console app to compute Fibonacci series of given length |
| [webapi] | Web API to set and retrieve to-do items |
| [ui] | Blazor web app for interactive counter and to-do list |
[fibonacci]:
[webapi]:
[ui]:
## Dev workflow
Set up a new project:
```bash
dotnet new
dotnet new gitignore
dotnet add package
```
Compile and run a project:
```bash
dotnet run
```