- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个类(简化示例)
public class Foo
{
public object Bar(Type type)
{
return new object();
}
}
并且我想使用 DynamicMethod
在 Bar
实例上调用 Bar
方法,如图所示下面:
MethodInfo methodInfo = typeof(Foo).GetMethod(nameof(Foo.Bar), new[] { typeof(Type) });
DynamicMethod method = new DynamicMethod("Dynamic Bar",
typeof(object),
new []{ typeof(Type) },
typeof(Foo).Module);
ILGenerator ilGenerator = method.GetILGenerator();
ilGenerator.Emit(OpCodes.Ldarg_0);
ilGenerator.EmitCall(OpCodes.Call, method, null); // I feel like this is wrong...
ilGenerator.Emit(OpCodes.Ret);
Func<Type, object> func = (Func<Type, object>) method.CreateDelegate(typeof(Func<Type, object>));
// Attempt to call the function:
func(typeof(Foo));
但是,它并没有按预期工作,而是中止了
Process is terminated due to a StackOverFlowException.
有人可以告诉我我做错了什么吗?是不是参数不匹配?如何在 Bar
的特定实例上调用 Func
?
最佳答案
ilGenerator.EmitCall(OpCodes.Call, method, null); // I feel like this is wrong...
您目前正在编写方法
;您可能打算在这里调用 methodInfo
。请注意,这需要是一个 static
方法才能使用 Call
- 如果它是一个实例方法,您可能应该使用 CallVirt
。由于您没有传入 Foo
的实例,因此不清楚目标实例将来自何处;您需要将两个 值加载到堆栈上以调用实例方法Foo.Bar(Type type)
- 而您目前只加载一个。
显示 Delegate.CreateDelegate
用法:
var methodInfo = typeof(Foo).GetMethod(nameof(Foo.Bar), new[] { typeof(Type) });
var foo = new Foo();
// if Foo is known ahead of time:
var f1 = (Func<Type, object>)Delegate.CreateDelegate(
typeof(Func<Type, object>), foo, methodInfo);
// if Foo is only known per-call:
var f2 = (Func<Foo, Type, object>)Delegate.CreateDelegate(
typeof(Func<Foo, Type, object>), null, methodInfo);
Console.WriteLine(f1(typeof(string)));
Console.WriteLine(f2(foo, typeof(string)));
关于c# - DynamicMethod 调用因 StackOverFlowException 而终止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49531982/
我想以某种方式找到我当前上下文中的所有 DynamicMethods,考虑我有以下方法和委托(delegate): public delegate double DivideInvoker(int a
如果我从类方法内部创建一个 DynamicMethod,我如何从 DynamicMethod Delegate 调用我的类的另一个方法?我需要以某种方式在 DynamicMethod 代码中捕获 th
我试图通过专门为该任务生成 IL 来提高项目中某段代码的性能。 此任务目前是通过对数组元素执行 for 循环并通过接口(interface)运行各种方法来完成的。我想用 IL 代替它,它专门执行此任务
我有以下代码 var dynamicAdd2 = new DynamicMethod("add", typeof(string), new[] { typeof(TestType) },
如何为具有 out 参数的委托(delegate)定义 DynamicMethod,就像这样? public delegate void TestDelegate(out Action a); 假设我
是否可以使用通用类型参数定义 DynamicMethod? MethodBuilder 类具有 DefineGenericParameters 方法。 DynamicMethod 有对应的方法吗?例如
有人可以解释或指出为什么在下面的示例中没有进行运行时类型检查吗?字符串属性可以设置为任何类型值... 在非常意想不到的地方坚持这一点,真的很惊讶 using System; using System.
Cecil中有类似Reflection.Emit.DynamicMethod的东西吗?谢谢。 动态方法 编辑: 下面的事情呢? EmitCall(例如 IL.EmitCall(OpCodes.Call
我在玩弄 DynamicMethod和 Expression Trees ' Compilation (在内部使用 DynamicMethod)。 然后我想知道是否有一种方法可以将自定义属性添加到生成
在 C# 4.0 中使用的优点是什么(除了语法) DynamicObject.TryInvokeMember(InvokeMemberBinder binder, object[] args, out
我的目标是在运行时创建一个委托(delegate),它可以将任何引用类型中的任何字段(包括 readonly)设置为用户指定的值。不幸的是,当包含类型的程序集指定 [AllowPartiallyTru
我正在通过在运行时使用 Reflection.Emit 创建自己的函数来学习 CIL。实际上,我很惊讶到目前为止事情是多么容易,但我遇到了一些我无法猜测的事情,而且我在文档中找不到任何相关内容。 我正
我希望能够通过传递依赖于客户端代码的事件名称和操作来订阅任何对象的任何事件。我有以下代码 public static class EventSubscriber { public static
我正在尝试使用 DynamicMethod 调用类似 printf 的非托管函数。在运行时我得到一个 BadImageFormatException:Index not found. (Excepti
这是一个学习练习。我创建了一个采用 Foo 和字符串并设置 A 属性的方法。我使用 Reflector 反汇编来制作以下发射代码。反汇编看起来像这样: .method private hidebysi
这在文章 C# scripts using DynamicMethod 中有描述我看到的优点 - 第一次调用将比使用 CSharpCodeProvider 快得多。 这种方法有什么缺点? 最佳答案 刚
我正在查看 Joel Pobar 的 Dodge Common Performance Pitfalls to Craft Speedy Applications关于反射的文章,我正在查看一段未编译的
我正在使用 IL 生成创建一个简单的反序列化器方法,该方法从 Lucene 文档中提取字符串并设置引用类型对象 (POCO) 的属性或字段。 每当我尝试运行生成的方法时,我都会收到 Verificat
我有这个类(简化示例) public class Foo { public object Bar(Type type) { return new object();
考虑以下简单代码: using System; class Test { delegate int FooDelegate(int i); FooDelegate Foo = Fo
我是一名优秀的程序员,十分优秀!