โ Back to Exceptions
Question 686
Argument Cannot Be Null
Argument Cannot Be Null
Read anid. Ifidis1the name isAlice, otherwise the name isnull. If the name isnull,throw new ArgumentNullException(nameof(name), "name not found"). Otherwise printName: <name>. Catch theArgumentNullExceptionand print exactlyError: name not found. Use top-level statements withtry/catch. Input1prints: Name: Alice Input2prints: Error: name not found
Expected Output:
Name: Alice
Topics:
Exceptions
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.