CJCoding With Joseph
15per day

Override ToString

Create a class Person with a name and age, and OVERRIDE ToString() to return "name (age)". When an object is printed directly, C# calls ToString automatically. Do NOT write a Main method.

For Person("Mia", 20) the program prints 'Mia (20)'.

Expected Output:

Mia (20)
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.