public DynamicExpressoInterpreter(MyCustomSingleData customData, List <Type> refTypes, List <object> variables) { Variables = variables; target = InterpreterGenerator.GetInterpreter(refTypes, variables); MainCustomData = customData; target.SetVariable("x", MainCustomData); }
public DynamicExpressoDelegate(List <Type> refTypes, List <object> variables) { target = InterpreterGenerator.GetInterpreter(refTypes, variables); }