CJCoding With Joseph

Constructor Overloading Class

Create a class Note with a private string field text. Provide TWO constructors: a no-argument one that sets text to Hello, and one that takes a string and stores it. A Read() method returns text. Do not write a Main method.

Reading a default note then a note built from Bye prints:
Hello
Bye

Expected Output:

Hello
Bye
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.