使用自定义属性获取程序集中的所有类型
有没有一种优雅的方法来获取程序集中具有自定义属性的所有类型?
因此,如果我有一个类,
[Findable]
public class MyFindableClass
{}
我希望能够在 Assembly.GetTypes(...) 返回的类型集合中找到它,
我可以通过一个大的卑鄙黑客来做到这一点,但我确信有人有更好的方法。
Is there an elegant way to get all the types in an assembly that have a custom attribute?
So if I have a class
[Findable]
public class MyFindableClass
{}
I would like to be able to find it in a collection of types returned by Assembly.GetTypes(...)
I can do it with a big vile hack, but I'm sure someone has a nicer way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不认为您可以回避枚举程序集中的每种类型,检查属性,但您可以使用 LINQ 使查询更易于理解:
编辑:从
MemberInfo.GetCustomAttributes
移至Attribute.IsDefined
基于 Marc Gravell 的建议。I wouldn't think you can dodge enumerating every type in the assembly, checking for the attribute, but you could use LINQ to make the query easier to understand:
EDIT: Moved from
MemberInfo.GetCustomAttributes
toAttribute.IsDefined
based on Marc Gravell's suggestion.