Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Latest commit

 

History

History
16 lines (10 loc) · 672 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 672 Bytes

C# Async Example

Demostration of async/await keywords and Task class in C# (.NET Core 3.0) in Console Application .

Based on Microsoft - # Asynchronous programming with async and await .

In our console application, we are going to demonstrate using async/await & Task class by using our chef classes to make a breakfast.

Usage

  1. Navigate to folder with .csproj file
  2. dotnet build
  3. dotnet run
  4. Output can be observed in console

Every Chef class includes a DelayMultiply property, which can be used to increase/decrease the delay in each chefs task.