IDisposable interface description

C# IDisposable Interface Implementation

Long long time ago I dissected the IDisposable interface (simple enough as it is) and made a "correct" implementation example essentially by commenting out MSDN code for better understanding what for and why you should do as it says:
1
2
3
4
5
6
7
8
class DisposableExample: IDisposable {
        #region Absolute minimum of the code required for correct implementation of IDisposable
        /// <summary>
        /// Field that will be set to true if attempt to destroy the object was already made.
        /// </summary>
        private bool isDisposed = false;
 
        /// <summary></summary>
Rating: 
Subscribe to RSS - IDisposable interface description