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