ARCed.Controls.GraphicsDeviceControl.Dispose C# (CSharp) Method

Dispose() protected method

Disposes the control.
protected Dispose ( bool disposing ) : void
disposing bool
return void
        protected override void Dispose(bool disposing)
        {
            if (this.graphicsDeviceService != null)
            {
                this.graphicsDeviceService.Release(disposing);
                this.graphicsDeviceService = null;
            }
            base.Dispose(disposing);
        }