CJCoding With Joseph

Auto-Implemented Properties

Create a class Product with two auto-implemented properties: Name (a string) and Price (a double). The constructor receives both and assigns them. The tester prints Name, a colon and a space, then Price. Do not write a Main method.

For new Product("Book", 12.5) the program prints:
Book: 12.5

Expected Output:

Book: 12.5
Topics:
Encapsulation
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.