“EnumerableExecutor”类的目的和用途是什么?

发布于 2024-11-03 16:29:32 字数 671 浏览 1 评论 0原文

以下是 System.Linq.EnumerableExecutor 的文档。

我无法弄清楚它可能做什么或有什么用途。以下是我从 Reflector 获得的源代码:

public abstract class EnumerableExecutor
{
    [TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]
    protected EnumerableExecutor(){}
}

public class EnumerableExecutor<T> : EnumerableExecutor
{
    [TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]
    public EnumerableExecutor(Expression expression){}
}

有人接受吗?

Here is the documentation for System.Linq.EnumerableExecutor.

I can't figure out what it could possibly do or be used for. Below is the source code I get from reflector:

public abstract class EnumerableExecutor
{
    [TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]
    protected EnumerableExecutor(){}
}

public class EnumerableExecutor<T> : EnumerableExecutor
{
    [TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]
    public EnumerableExecutor(Expression expression){}
}

Any takers?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔戏命师 2024-11-10 16:29:32

正如文档中所述,我们的代码不打算使用它。它具有可能对框架内部有用的内部方法,例如:

internal T Execute();

internal override object ExecuteBoxed();

目的似乎是提供编译Expression、执行它并返回结果的功能。

As it is stated in the documentation, it is not intended to be used by our code. It has internal methods that might be useful to the internals of the Framework, such as:

internal T Execute();

internal override object ExecuteBoxed();

It seems that the purpose is to provide functionality to compile an Expression, execute it and return the result.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文