显式接口实现和 Reflection.Emit
有谁知道如何显式实现接口的属性 使用Reflection.Emit?
Does anybody know how to implement an interface's property explicitly
using Reflection.Emit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅 MSDN 文档,了解 TypeBuilder.DefineMethodOverride,其中包括使用 Reflection.Emit 生成使用该方法的显式接口实现的示例。
See the MSDN documentation for TypeBuilder.DefineMethodOverride, which includes an example of using Reflection.Emit to generate an explicit interface implementation using that method.
这个 Reflector Addin 应该可以帮助您。它将给定方法的 IL 代码转换为使用 System.Reflection.Emit 生成相同 IL 代码所需的 C# 代码。
This Reflector Addin should help you. It translates the IL code of a given method into the C# code that would be needed to generate the same IL code using
System.Reflection.Emit.