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

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

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