检查返回类型是否为 IEnumerable;
如何检查函数的返回类型是否为 IEnumerable
?换句话说,我不想匹配 List
,即使它实现了 IEnumerable
。或者换句话说,如何检测函数是否延迟执行?
How can I check if the return type of a function is IEnumerable<T>
? In other words, I don't want to match List<T>
, even though it implements IEnumerable<T>
. Or put even another way, how can I detect if a function has deferred execution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您正在与
MethodInfo
进行交互?当然,仅仅因为它返回
IEnumerable
并不意味着它使用延迟执行(即yield return
),并且没有真正的方法可以在不反编译代码的情况下检查这一点。I assume you are interacting with a
MethodInfo
?Of course, just because it returns
IEnumerable
doesn't mean it uses deferred execution (i.e.yield return
) and there's no real way to check for that without decompiling the code.