CJCoding With Joseph

Read-Only Field

Create a class IdCard with a public readonly string Name field. A readonly field can only be assigned inside the constructor, which fixes the name for the object's lifetime. Assign the constructor's parameter to it. Do not write a Main method.

For new IdCard("Sam") the program prints:
Sam

Expected Output:

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