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

https://github.com/truecodersio/static-exercise

.NET 6.0 template project for the Static exercise at TrueCoders
https://github.com/truecodersio/static-exercise

Last synced: about 1 year ago
JSON representation

.NET 6.0 template project for the Static exercise at TrueCoders

Awesome Lists containing this project

README

          

## Exercise 1:

Create a static class called TempConverter.

The class should have at least 2 methods, one called FahrenheitToCelsius that will require a double as a parameter and return a double, the other CelsiusToFahrenheit which will also require a double as a parameter and return a double.

Fill out these methods and call them in your Program.cs file. Make sure they’re accurate!

For reference:
https://github.com/mvdoyle/StaticExercise