Skip to content

Instantly share code, notes, and snippets.

@dodyg
Created August 10, 2022 12:15
Show Gist options
  • Save dodyg/27ee0c9790184675021a8f1852729664 to your computer and use it in GitHub Desktop.
Save dodyg/27ee0c9790184675021a8f1852729664 to your computer and use it in GitHub Desktop.

Create a console application to manage a recipe

This exercise is designed to measure your competency in C#.

Requirements

A recipe entry has the following details:

  • Title
  • Ingredients
  • Instructions
  • One or more categories

Functionalities required:

  • Add and edit recipe categories.
  • List, add and edit recipes.
  • All the data must be stored in a json file on disk.

Libraries to use

Notes

  • Make sure you follow the C# coding standard.
  • Create the project as a public project on your github account.
  • Use C# 10.
  • Keep your daily progress on the log.
  • Make sure to test your project thoroughly.
  • Make sure your application is nice to use.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment