Skip to content

v3.0.14

Compare
Choose a tag to compare
@JonathanMagnan JonathanMagnan released this 13 Jan 19:54
· 10 commits to master since this release

Download the library here

  • ADDED: RegisterGlobalVariable now allow to pass a dictionary (key/value)
var dict = new Dictionary<string, object>();
dict.Add("X", 2);

EvalManager.DefaultContext.RegisterGlobalVariable(dict);
Eval.Execute("X = 3");

var x = dict["X"];

Trial unlocked until the end of February