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