idTech4.UI.idUserInterface.Dispose C# (CSharp) 메소드

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 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