Ejemplo n.º 1
0
 public Node PickChild(Data example)
 {
     return this.children [example.Values [this.attribute.Name].AsString ()];
 }
Ejemplo n.º 2
0
 public override Value Choose(Data example)
 {
     return this.decision;
 }
Ejemplo n.º 3
0
 public virtual Value Choose(Data example)
 {
     return this.PickChild (example).Choose (example);
 }