CJCoding With Joseph

Default for Empty Input

The Profile class has a private field name. Add a Name property whose get returns the field and whose set stores "Anonymous" when it is given a null or empty string, otherwise it stores the value as-is. Do NOT write a Main method.

For Name = "" the program prints:
Anonymous

For Name = "Zoe" the program prints:
Zoe

Expected Output:

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