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);
        }