Beginner C#
Q30 / 100

What is the purpose of IDisposable?

Correct! Well done.

Incorrect.

The correct answer is B) Provides a Dispose() method for releasing unmanaged resources when using the using statement

B

Correct Answer

Provides a Dispose() method for releasing unmanaged resources when using the using statement

Explanation

Implement IDisposable to release file handles, database connections, etc. The using statement automatically calls Dispose() at block end.

Progress
30/100