The below code throws a 'MissingMemberException'
ScriptEngine engine = Python.CreateEngine();
ScriptRuntime runtime = engine.Runtime;
ScriptScope scope = runtime.CreateScope();
string code = "emp.Name==\"Bernie\"";
ScriptSource source =
engine.CreateScriptSourceFromString(code, SourceCodeKind.Expression);
var emp = new {Name = "Bernie"};
scope.SetVariable("emp", emp);
var res = (double)source.Execute(scope);
if I declare a type called 'Employee' and give it a member 'Name', and use this instead:
var emp = new Employee {Name = "Bernie"}
It works just as expected. Does anyone know why it doesn't work on anonymous types and is there a workaround?
Employeeclass public or internal? – vcsjones Jan 16 at 22:41