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

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

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

Last synced: about 1 year ago
JSON representation

.NET 6.0 template project for the Classes exercise at TrueCoders

Awesome Lists containing this project

README

          

## Exercise 1:

+ Create a class named Car - make sure it is public

### In the Car class:
+ Create a Make property of type string that is public
+ Create a Model property of type string that is public
+ Create a Year property of type int that is public
### In the Main method:
+ Create a new instance of the Car class
+ Set values in the properties for the object
+ Print the values of each property to the Console