Finish() публичный Метод

Will be execeuted once the controller has done it's workd. Use this to dispose objects and release memory Sera ejecutada una vez que el control ha hecho su trabajo. Use esto para deshechar objetos y liberar la memoria.

public Finish ( ) : void
Результат void
Пример #1
0
 /// <summary>
 /// Exits and closes the current app. Use this to dispose objects and release memory
 /// <para xml:lang="es">
 /// Se sale y cierra la aplicacion actual. Use esto para desechar objetos y liberar la memoria.
 /// </para>
 /// </summary>
 public virtual void Finish()
 {
     while (Controller != null)
     {
         Controller.Finish();
     }
 }
Пример #2
0
 /// <summary>
 /// Exits and closes the current app. Use this to dispose objects and release memory
 /// </summary>
 public virtual void Finish()
 {
     Controller.Finish();
 }