.NET & C# ยท C#
What are IDisposable and resource cleanup in C#?
IDisposable provides deterministic cleanup for resources whose lifetime should not depend on garbage collection, such as streams and database connections.
IDisposable provides deterministic cleanup for resources whose lifetime should not depend on garbage collection, such as streams and database connections.