public OpData(string op, OpFunc opFunc) { this.Op = op; this.OpMake = opFunc; }
public MeVariable Execute(MeVariable[] parameters) { return(OpFunc.Invoke(parameters, this)); }