- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试创建委托(delegate)以在运行时读取/写入未知类型类的属性。
我有一个通用类 Main<T>
和一个看起来像这样的方法:
Delegate.CreateDelegate(typeof(Func<T, object>), get)
哪里get
是 MethodInfo
应读取的属性。问题是当属性返回 int
时(我猜值类型会发生这种情况)上面的代码抛出 ArgumentException 因为无法绑定(bind)该方法。如果是字符串,效果很好。
为了解决这个问题,我更改了代码,以便使用 MakeGenericType
生成相应的委托(delegate)类型.所以现在代码是:
Type func = typeof(Func<,>);
Type generic = func.MakeGenericType(typeof(T), get.ReturnType);
var result = Delegate.CreateDelegate(generic, get)
现在的问题是 generic
的创建委托(delegate)实例所以我必须使用 DynamicInvoke
这将与使用纯反射读取字段一样慢。
所以我的问题是,为什么第一段代码因值类型而失败。根据MSDN它应该像它说的那样工作
The return type of a delegate is compatible with the return type of a method if the return type of the method is more restrictive than the return type of the delegate
以及如何在第二个片段中执行委托(delegate)以使其比反射更快。
谢谢。
最佳答案
这是解决您的问题的一种方法。创建一个泛型方法:
public static Func<T, object> MakeDelegate<U>(MethodInfo @get)
{
var f = (Func<T, U>)Delegate.CreateDelegate(typeof(Func<T, U>), @get);
return t => f(t);
}
这样,C# 的编译器负责插入必要的装箱(如果有的话)来转换 f(t)
(类型 U
)到 object
.现在你可以使用反射来调用这个 MakeDelegate
使用 U
的方法设置为 @get.ReturnType
,你得到的将是一个 Func<T, object>
无需使用 DynamicInvoke
即可调用.
关于c# - 未知类型的 CreateDelegate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2490828/
我正在尝试创建委托(delegate)以在运行时读取/写入未知类型类的属性。 我有一个通用类 Main和一个看起来像这样的方法: Delegate.CreateDelegate(typeof(Func
这是 prior thread 的一种后续。我正在构建一个小型包装器来向上调用我的用户提供的动态类型化方法。该方案运作良好......但仅适用于静态方法。尽管 CreateDelegate 也应该适用
感谢 Jon Skeet 在 this 中的回答问题我有以下工作: public delegate BaseItem GetItemDelegate(Guid itemID); public stat
假设我想传递一个成员函数作为回调。 我应该使用什么来传递上下文 - bind() 或 createDelegate()? 我的意思是,这个: someObj.on('someEvent', this.
我有以下问题:我想调用 Delegate.CreateDelegate从我针对 .NET 4.5、Windows Phone 8 和 Windows 8 商店应用程序的可移植类库中,但我的代码无法编译
我一直在尝试使用反射来比较在编译时类型未知的对象,而不是每次尝试使用 CreateDelegate() 时都调用 Invoke()。到目前为止,我已经在基本类型等的通用类型类中使用它,但我遇到了类型为
这是我第一次尝试将用户定义的参数传递给 IE9 中 extjs(4.0.1) 中的处理程序函数。我有以下代码,但它抛出了一个错误,指出 SCRIPT438: Object doesn't suppor
这是我第一次尝试将用户定义的参数传递给 IE9 中 extjs(4.0.1) 中的处理程序函数。我有以下代码,但它抛出了一个错误,指出 SCRIPT438: Object doesn't suppor
使用 Jon Skeet 的文章 Making reflection fly and exploring delegates作为指南,我正在尝试使用 Delegate.CreateDelegate 方
在创建接口(interface)方法的委托(delegate)时,我正在努力寻找哪里出错了 我的代码如下: private static Func> FindScrapeMethod(ICrawler
编辑:我在 microsoft connect::上提交了错误报告: https://connect.microsoft.com/VisualStudio/feedback/details/61423
现在,我必须这样做 private delegate void set(int obj); //declare the prototype ... Delegate delegate1 = Deleg
我尝试为 this question 实现 Jon Skeet 的解决方案发布在此 blog post将 SetValue 方法替换为使用委托(delegate)的非反射方法。 与blog post中
我正在尝试使用 Delegate.CreateDelegate [MSDN link]绑定(bind)到静态泛型方法,但绑定(bind)失败。这是 PoC 代码: public static clas
我在看的实现 Observable.FromEvent(add, remove) 我正在努力了解它是如何工作的。让我们说 TEventHandler 是标准: public delegate void
我有一个静态方法: public class Example { //for demonstration purposes - just returns default(T) publ
关于Making reflection fly and exploring delegates的问题... 如果我需要创建委托(delegate) Func我可能会使用的动态加载类型的方法 (1) D
当我调用 CreateDelegate(delegateType) 时,我得到一个 System.ArgumentException,根据 MSDN,这是因为 delegateType 的参数数量错误
在遵循这个问题的答案后,我发现我必须使用 ref 参数来调用结构上的实例方法。 How can I create an open Delegate from a struct's instance m
运行 Run2 方法。但是Run方法没有运行。是什么原因 ?两种方法之间的唯一区别是因为参数。 public class MyClass { public string Name { get;
我是一名优秀的程序员,十分优秀!