Class Disposable
This class provides a base class that implements the IDisposable interface as suggested in the .NET documentation using the Disposable pattern.
Inheritance
System.Object
Disposable
Implements
System.IDisposable
Namespace: Syncfusion.UI.Xaml.Grid.Collections.ComponentModel
Assembly: Syncfusion.SfGridCommon.WPF.dll
Syntax
public class Disposable : NonFinalizeDisposable, IDisposable
Remarks
If you derive from this class, you only need to override the protected Dispose method and check the disposing parameter.
Constructors
Disposable()
Declaration
public Disposable()
Methods
Finalize()
System.Object.Finalize.
In C# and C++, finalizers are expressed using destructor syntax.
Declaration
protected override void Finalize()
Implements
System.IDisposable