创建使用动态生成的类型的表达式树

本文关键字:类型 表达式 动态 创建 | 更新日期: 2023-09-27 18:14:44

我有一个完全初始化的MethodBuilderEnumBuilderMethodBuilder指向动态程序集的入口点。它有以下签名:

public static int Main (string [] args) {...}

程序集生成代码运行良好,我可以使用Reflection.Emit来测试它。我不想发出IL,而是想从表达式树中保存目标代码。它应该:

  • 声明枚举变量
  • 给它赋值
  • 写入控制台
  • 阅读暂停控制台
  • 将枚举值作为Int32返回

表达式树:

// Intention: Declare string [] args in the expression scope.
var arguments = Expression.Parameter(typeof(string []), "args");
// Intention: var code = default(MyDynamicEnum);
var code = Expression.Variable(builderEnum, "code");
// Intention: code = MyDynamicEnum.Two;
var assign = Expression.Assign(code, Expression.Constant(2, builderEnum));
// Intention: Console.WriteLine(args [0]);
var write = Expression.Call(typeof(Console).GetMethod("WriteLine", new Type [] { typeof(string) }), Expression.ArrayIndex(arguments, Expression.Constant(0, typeof(int))));
// Intention: Console.ReadKey(true);
var read = Expression.Call(typeof(Console).GetMethod("ReadKey", new Type [] { typeof(bool) }), Expression.Constant(true, typeof(bool)));
// Intention: return ((int) code);
var @return = Expression.Constant(2, typeof(int));
// How to combine above expressions and create a function body?
var block = Expression.Block(arguments, code, assign, write, read, @return);
var lambda = Expression.Lambda<Func<string [], int>>(block, new ParameterExpression [] { arguments });
lambda.CompileToMethod(builderMethod); // Error: Variable 'code' of type 'Type: MyDynamicEnum' referenced from scope '', but it is not defined.

完整的代码在此GIST上可用。最后一行的错误似乎有道理,但我不知道如何修复它。枚举MyDynamicEnum已经创建为类型,但我如何将其导入表达式树上下文?任何建议都将不胜感激。

创建使用动态生成的类型的表达式树

通过使用Expression.Block的正确过载来解决它。

为了在表达式范围中使用变量,我们必须指定:

Expression.Block(variables.ToArray(), queue);

其中变量是CCD_ 7类型的数组。