.NET 3.5 中 ExpandoObject 的替代品,开销最小

发布于 2024-10-16 13:49:34 字数 634 浏览 2 评论 0原文

如何以最少的开销在 .NET 3.5 应用程序中模仿 ExpandoObject 的功能?到目前为止,我最好的方法是使用 Lin Fu 框架 ( http://www.codeproject. com/KB/cs/LinFuPart2.aspx ),但我认为可能有更好的东西。

为了更好地了解我在这里的目的,我的目标是从 MethodInfo 的参数动态创建类型。所以,基本上我想

    public class ServiceObject
    {
        public void Execute(string TransformMeIntoAProperty);
    }

将其转变为

    public class ServiceObjectExecuteSignature
    {
        public string TransformMeIntoAProperty{ get; set;}
    }

在运行时 :。我必须能够使用反射访问参数,因为我正在使用 Linq 表达式。

How can I imitate the functionality of the ExpandoObject in a .NET 3.5 application with the least overhead? My best lead so far is to use the Lin Fu framework ( http://www.codeproject.com/KB/cs/LinFuPart2.aspx ), but I'm thinking there may be something better.

To give a better idea of what I am going for here, my objective is to dynamically create the type from the parameters of a MethodInfo. So, basically I want to turn this:

    public class ServiceObject
    {
        public void Execute(string TransformMeIntoAProperty);
    }

into

    public class ServiceObjectExecuteSignature
    {
        public string TransformMeIntoAProperty{ get; set;}
    }

at runtime. I have to be able to access the Parameters using Reflection, because I am using Linq Expressions.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文