โ Back to Interfaces
Question 696
Implement IDisposable to Release a Resource
Implement IDisposable to Release a Resource
Complete theLoggerclass so that it implements theIDisposableinterface. ItsDisposemethod must printLogger closed(followed by a newline). Do NOT write aMainmethod. The tester wraps the logger in ausingblock. When the block ends,Disposeruns automatically, so the program prints: Logging... Logger closed
Expected Output:
Logging... Logger closed
Topics:
Interfaces
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.