我有以下代码:

    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 method创建引用类型。


  当作为参考参数传递时,返回代表当前类型的Type对象




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

关于c# - 如何在DynamicMethod Emit中表示typeof(Int32&)类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43990977/

10-13 03:40