Microsoft.ManagementConsole.FormView.InternalShutdown C# (CSharp) 메소드

InternalShutdown() 개인적인 메소드

private InternalShutdown ( ) : void
리턴 void
        internal override void InternalShutdown()
        {
            if (this._control != null)
            {
                this._control.Dispose();
            }
            if (this._containerControl != null)
            {
                this._containerControl.Dispose();
            }
            this._control = null;
            this._containerControl = null;
            this._controlType = null;
        }