使用 System.Reflection.Emit 命名空间将字段替换为属性?

发布于 2024-07-25 01:31:25 字数 190 浏览 2 评论 0原文

我正在尝试找出一种使用 Reflection.Emit 命名空间来删除​​字段并将其替换为我自己的 Property 实现的方法。 我一直在阅读如何使用 Emit 生成代码以及直接编写和编译 IL 代码,但我还没有看到任何有关如何使用 Reflection.Emit 命名空间进行替换或删除的示例; 谁能给我展示一些类似的例子吗?

谢谢。

I'm trying to figure out a way to use the Reflection.Emit namespace to remove a field and replace it with my own Property implementation. I've been reading on how to generate code using Emit and writing and compiling IL code directly, but I haven't seen any examples on how to do a replace or remove using the Reflection.Emit namespace; Can anyone show me any examples of something along those lines?

Thanks.

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

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

发布评论

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

评论(2

送你一个梦 2024-08-01 01:31:25

据我所知,这在 CLR 中是不可能的。 我什至不认为一旦加载类型就可以修改它。 根据您计划使用该属性的方式,您可以使用自定义 TypeDescriptor(组件使用它来动态扩展属性,例如 Windows 窗体中的 ToolTip 组件),也可以使用 DependencyProperty。 但对于普通的旧后期绑定到加载类型的新成员或修改成员,我认为这是不可能的。

为什么不在将程序集加载到 AppDomain 之前使用 Assembly.ReflectionOnlyLoadFrom 加载 DLL,然后使用内存中动态生成的类型发出一个类型,然后加载该类型?

To my knowledge this is impossible in the CLR. I don't even think you could amend a type once it has been loaded. Depending on how you plan to use the property, you could possibly use either a custom TypeDescriptor (components use this to dynamically extend properties such as the ToolTip component in Windows Forms) or you may be able to use DependencyProperty. But as for plain old late binding to a new or modified member of a loaded type, I don't think that's possible.

Why not use the Assembly.ReflectionOnlyLoadFrom to load the DLL prior to loading the assembly into the AppDomain then emit a new type with the dynamically generated type in memory and then load that?

我最亲爱的 2024-08-01 01:31:25

您可以尝试使用 Postsharp 研究面向方面的编程。

我从未使用过 Postsharp,因此对于如何完成此任务我没有具体的想法。 然而,这听起来确实与我听说的使用 Postsharp 可以做的一些事情惊人地相似(设置代码来运行属性或字段的预/后访问)。

http://www.postsharp.org/

You might try looking into Aspect Oriented Programming with Postsharp.

I have never used Postsharp, so I have no specific ideas on how exactly you might accomplish this. However, this does sound strikingly similar to some things that I've heard you can do with Postsharp (set up code to run pre/post access of a property or field).

http://www.postsharp.org/

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