โ Back to Classes
Question 219
Override ToString
Override ToString
Create a classPersonwith a name and age, and OVERRIDEToString()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.