XPTable.Models.Table.Dispose C# (CSharp) Method

Dispose() protected method

Releases the unmanaged resources used by the Control and optionally releases the managed resources
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged /// resources; false to release only unmanaged resources
return void
        protected override void Dispose(bool disposing)
        {
            if (disposing)
            {
                if (components != null)
                    components.Dispose();
            }

            base.Dispose(disposing);
        }
Table