BrightIdeasSoftware.ObjectListView.Dispose C# (CSharp) Method

Dispose() protected method

Dispose of any resources this instance has been using
protected Dispose ( bool disposing ) : void
disposing bool
return void
        protected override void Dispose(bool disposing)
        {
            base.Dispose(disposing);

            if (!disposing)
                return;

            foreach (GlassPanelForm glassPanel in this.glassPanels) {
                glassPanel.Unbind();
                glassPanel.Dispose();
            }
            this.glassPanels.Clear();

            this.UnsubscribeNotifications(null);
        }
ObjectListView