Ejemplo n.º 1
0
 public Value(Def.WhenFunc func)
 {
     this.func = func;
 }
Ejemplo n.º 2
0
 public WhenElement(List <Value> parent, Def.WhenFunc func)
 {
     this.value = new Value(func);
     parent.Add(this.value);
 }
Ejemplo n.º 3
0
 public WhenElement @when(Def.WhenFunc func)
 {
     return(new WhenElement(whenElements, func));
 }