Beispiel #1
0
 // This method is not just syntactic sugar.
 // It chooses the proper overload of Visit() based on the current type.
 public virtual void Accept(LogicalExpressionVisitor visitor)
 {
     throw new NotImplementedException();
 }
Beispiel #2
0
 public override void Accept(LogicalExpressionVisitor visitor)
 {
     visitor.Visit(this);
 }