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
- Host: GitHub
- URL: https://github.com/truecodersio/static-exercise
- Owner: truecodersio
- Created: 2022-09-07T02:00:24.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-28T18:10:33.000Z (over 1 year ago)
- Last Synced: 2025-03-31T17:18:41.270Z (over 1 year ago)
- Language: C#
- Size: 93.8 KB
- Stars: 0
- Watchers: 2
- Forks: 372
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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