This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyClass : IDisposable | |
{ | |
/// <summary> | |
/// Finalizes an instance of the <see cref="MyClass"/> class. Releases unmanaged | |
/// resources and performs other cleanup operations before the current instance is | |
/// reclaimed by garbage collection. | |
/// </summary> | |
~MyClass() | |
{ | |
this.Dispose(false); |