Beispiel #1
0
 public bool Merge(Func f)
 {
     if (f.Equals(this) && !f.IsEmptyBody() && this.IsEmptyBody())
     {
         this.SetBody(f.body);
         this.SetTable(f.table);
         return(true);
     }
     return(false);
 }
Beispiel #2
0
 public bool Merge(Func f)
 {
     if (f.Equals(this) && !f.IsEmptyBody() && this.IsEmptyBody())
     {
         this.SetBody(f.body);
         this.SetTable(f.table);
         return true;
     }
     return false;
 }