AtelierElieScripter.MainForm.Dispose C# (CSharp) Method

Dispose() protected method

Disposes resources used by the form.
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) {
				if (components != null) {
					components.Dispose();
				}
			}
			base.Dispose(disposing);
		}