向系统类添加自定义属性
我想从 System.Activites.Presentation
我的自定义属性添加类。我尝试使用 emit(TypeBuilder, ModuleBuilder, AssemblyBuilder)
来实现。是否可以通过向现有类型添加属性来更改现有类型?或者如何告诉TypeBuilder
,以便它使用现有的数据类型?或者从给定类型继承? 谢谢。
I want to add classes from System.Activites.Presentation
my custom attribute. I tried to do it with emit(TypeBuilder, ModuleBuilder, AssemblyBuilder)
. Is it possible to change an existing type by adding an attribute to it? Or how to tell TypeBuilder
, so that it uses an existing data type? Or inherit from a given type?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法向
System
类添加属性,但如果它们未标记为Sealed
,您可以创建从原始派生的自定义类并添加自定义属性。您的所有代码都必须调用派生类,除了添加的属性之外,派生类与原始类相同。
You can't add attributes to
System
classes but, if they are not marked asSealed
you can create your custom class deriving from original and adding custom attribute.All your code must call derived class, that is identical to the original except on the attribute added.