idTech4.UI.idUserInterface.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
		public void Dispose()
		{
			Dispose(true);
			GC.SuppressFinalize(this);
		}

Same methods

idUserInterface::Dispose ( bool disposing ) : void

Usage Example

示例#1
0
        public void Remove(idUserInterface ui)
        {
            if (_guiList.Contains(ui) == true)
            {
                _guiList.Remove(ui);
            }

            if (ui.Disposed == false)
            {
                ui.Dispose();
            }
        }
All Usage Examples Of idTech4.UI.idUserInterface::Dispose