在C#中如何使用emit调用静态方法
我正在尝试使用 Emit 生成映射代码(将属性从一个对象映射到另一个对象)。如果两种类型匹配(源和目标),我可以让它工作,但我无法让它在类型不匹配的实例中工作,并且我需要在映射中调用静态方法。下面是我认为可行的代码,但我得到一个方法不存在错误,即使它确实存在。我猜我的发出呼叫不正确。有什么建议吗?
foreach (var map in maps)
{
il.Emit(OpCodes.Ldarg_1);
il.Emit(OpCodes.Ldarg_0);
il.EmitCall(OpCodes.Callvirt, map.SourceProperty.GetGetMethod(), null);
if (map.SourceProperty.PropertyType == map.TargetProperty.PropertyType)
il.EmitCall(OpCodes.Callvirt, map.TargetProperty.GetSetMethod(), null);
else if (map.TargetProperty.PropertyType.Name == "ObjectId" && map.SourceProperty.PropertyType.Name.ToLower() == "string") {
var method = typeof(ObjectId).GetMethod("Parse", BindingFlags.Public | BindingFlags.Static, Type.DefaultBinder, new Type[] { typeof(string) }, null);
il.EmitCall(OpCodes.Callvirt, method , null);
}
}
il.Emit(OpCodes.Ret);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够通过使用
EmitCall
和OpCodes.Call
而不是CallVirt
。You should be able to call it by using
EmitCall
withOpCodes.Call
instead ofCallVirt
.这是引发错误的行吗?
也许你可以尝试
也许 parse 将一个对象而不是字符串作为参数?
错误信息是什么?
This is the line that's throwing the error?
Perhaps you could try
Perhaps parse takes an object as its parameter instead of a string?
What is the error message?