// @nuget: Z.Expressions.Eval
using System;
using System.Collections.Generic;
using System.Dynamic;
using Z.Expressions;
public class Program
{
public static void Main()
var evalContext = new EvalContext();
evalContext.AddMethod(@"public bool Test111()
return true;
}");
evalContext.AddMethod(@"public bool Test222()
return Test111();
var t = evalContext.Execute("Test222()");
Console.WriteLine(t);
}