正在使用此解决方案使用反射.emit 将匿名类型转换为字典。在我从 3.5 更改为 .Net 4.0 之前工作正常。
现在,我收到“System.Security.VerificationException:操作可能会破坏运行时”。错误。
将匿名加载的动态方法转换为托管在动态程序集中的方法,保存它,然后在其上运行 peverify.exe 以找出问题所在。
得到:[IL]:错误:[DynamicAssemblyExample.dll:MyDynamicType::MyMethod][offs et 0x0000000D][found ref ('this' ptr)'MyDynamicType'][expected ref'<>f__AnonymousType1`3[System.String, System.Int32,System.Byte]'] 堆栈上的意外类型。[IL]:错误:[DynamicAssemblyExample.dll:MyDynamicType::MyMethod][offs et 0x0000000D] 方法不可见。2 验证 DynamicAssemblyExample.dll 的错误
编码:
foreach (PropertyInfo property in itemType.GetProperties(attributes).Where(info => info.CanRead))
{
// load Dictionary (prepare for call later)
methIL.Emit(OpCodes.Ldloc_0);
// load key, i.e. name of the property
methIL.Emit(OpCodes.Ldstr, property.Name);
// load value of property to stack
methIL.Emit(OpCodes.Ldarg_0);
methIL.EmitCall(OpCodes.Callvirt, property.GetGetMethod(), null);
// perform boxing if necessary
if (property.PropertyType.IsValueType)
{
methIL.Emit(OpCodes.Box, property.PropertyType);
}
// stack at this point
// 1. string or null (value)
// 2. string (key)
// 3. dictionary
// ready to call dict.Add(key, value)
methIL.EmitCall(OpCodes.Callvirt, addMethod, null);
}
有没有办法取消指向实际属性的指针?还是我必须以某种方式投射它?任何指针?
问候!