Hello everybody,
today I want to share my usage if IDisposable interface in C#.
Before code presentation some explanations:
1. If created by me class uses some unmanaged resources then it means that I should also implement IDisposable interface in order to clean memory. 2. Clean objects as s...