CM3D2.MaidFiddler.Plugin.Gui.TranslationSelectionGUI.Dispose C# (CSharp) Method

Dispose() protected method

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
return void
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

Usage Example

Beispiel #1
0
        private void OpenLangMenu(object sender, EventArgs e)
        {
            Debugger.WriteLine(LogLevel.Info, "Opening language select menu...");
            TranslationSelectionGUI tsGui = new TranslationSelectionGUI(Plugin);

            tsGui.ShowDialog(this);
            tsGui.Dispose();
        }
All Usage Examples Of CM3D2.MaidFiddler.Plugin.Gui.TranslationSelectionGUI::Dispose