CJCoding With Joseph

Product Property Class

Create a class Product that exposes two auto-implemented properties: a string named Name and a double named Price, both with public get and set. The tester sets them and prints a summary. Do not write a Main method.

After setting Name to Pen and Price to 1.5, the program prints:
Pen costs $1.5

Expected Output:

Pen costs $1.5
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.