如何在 DynamicMethod Emit 中表示 typeof(Int32&) 类型



我有以下代码:

    delegate void RefAction(ref Int32 i);// use ref keyword
    static RefAction CreateRefGenerator(){
        // How to represent typeof(Int32&)type in here??
        Type[] types ={ typeof(Int32)};
        var dm = new DynamicMethod("RefAction"+Guid.NewGuid().ToString(), null, types, true);
        var il = dm.GetILGenerator();
        il.Emit(OpCodes.Nop);
        il.Emit(OpCodes.Ldarg_1);
        il.Emit(OpCodes.Ldc_I4_S,10);
        il.Emit(OpCodes.Stind_I4);
        il.Emit(OpCodes.Ret);
        return (RefAction)dm.CreateDelegate(typeof(RefAction));
    }

运行后,出现以下错误:

因为它的签名或安全

透明度与委托类型的签名或安全透明度不兼容。

以下正常工作:

  static RefAction CreateRefGenerator(){
        Type[] types = { typeof(Int32).MakeByRefType() };
        ...
  }

您必须使用 Type.MakeByRefType 方法来创建 ref 类型。

返回一个 Type 对象,该对象在作为 ref 参数传递时表示当前类型


您的 il 代码中也可能有一个错误:Afaik 动态方法始终是静态的,因此第一个显式参数可以在索引零处找到,而不是一个。

相关内容

  • 没有找到相关文章

最新更新