示例#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);
 }