Coding Exercise: Classes

Test yourself on classes.

We'll cover the following...

Problem

This exercise on creates a class for a house inventory program. Create a console-based application called House Inventory App that meets the requirements below.

  1. Create a class and name it House.

  2. The House class must have the following properties:

    • Address as string
...