C# Csharpscripting I've an external source code:
static int Prina2() { rexu = rexu*2; }
when calling it with :
public class Globals { public static int rexu ; }
it's working. But doesn't work when I call it with :
public class Globals : DynamicObject { .... }
it says : error cs0103 the name rexu does not exist in the current context.
I'd made references :
System.Dynamic.DynamicObject
System.Linq.Expressions.DynamicExpression
Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo.
But it's Always fail Can you help?