Finish() public method

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