ARCed.Controls.GraphicsDeviceControl.Dispose C# (CSharp) Метод

Dispose() защищенный Метод

Disposes the control.
protected Dispose ( bool disposing ) : void
disposing bool
Результат void
        protected override void Dispose(bool disposing)
        {
            if (this.graphicsDeviceService != null)
            {
                this.graphicsDeviceService.Release(disposing);
                this.graphicsDeviceService = null;
            }
            base.Dispose(disposing);
        }