Beispiel #1
0
 public void Delete()
 {
     if (display != null)
     {
         this.display.Close();
     }
     if (setTo != null)
     {
         ((Logic)setTo).Delete();
     }
     this.setTo  = null;
     this.parent = null;
 }
 public void Delete()
 {
     if (display != null)
     {
         this.display.Close();
     }
     if (left != null)
     {
         ((Logic)left).Delete();
     }
     if (right != null)
     {
         ((Logic)right).Delete();
     }
     this.left   = null;
     this.right  = null;
     this.parent = null;
 }
Beispiel #3
0
 public void Delete()
 {
     if (display != null)
     {
         this.display.Close();
     }
     if (attackValue != null)
     {
         ((Logic)attackValue).Delete();
     }
     this.attackValue = null;
     if (defenceValue != null)
     {
         ((Logic)defenceValue).Delete();
     }
     this.defenceValue = null;
     this.parent       = null;
 }
 public void Delete()
 {
     if (display != null)
     {
         this.display.Close();
     }
     if (potency != null)
     {
         ((Logic)potency).Delete();
     }
     this.potency = null;
     if (length != null)
     {
         ((Logic)length).Delete();
     }
     this.length = null;
     if (deterioration != null)
     {
         ((Logic)deterioration).Delete();
     }
     this.deterioration = null;
     this.parent        = null;
 }
Beispiel #5
0
 public Resta(Calculable elemento1, Calculable elemento2) : base(elemento1, elemento2)
 {
 }
 public OperacionBinaria(Calculable elemento1, Calculable elemento2)
 {
     this.elemento1 = elemento1;
     this.elemento2 = elemento2;
 }
Beispiel #7
0
 public Suma(Calculable elemento1, Calculable elemento2) : base(elemento1, elemento2)
 {
 }