CJCoding With Joseph

Private Setter

The Product class should expose a Name property that anyone can read but only the class itself can change. Add a Name property with a public get and a private set, and assign it inside the constructor. Do NOT write a Main method.

For new Product("Pen") the program prints:
Pen

Expected Output:

Pen
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.