C#读取属性
示例
方法GetCustomAttributes返回应用于成员的自定义属性的数组。检索此数组后,您可以搜索一个或多个特定属性。
var attribute = typeof(MyClass).GetCustomAttributes().OfType<MyCustomAttribute>().Single();
或遍历他们
foreach(var attribute in typeof(MyClass).GetCustomAttributes()) {
Console.WriteLine(attribute.GetType());
}GetCustomAttribute扩展方法从中System.Reflection.CustomAttributeExtensions检索指定类型的自定义属性,它可以应用于anyMemberInfo。
var attribute = (MyCustomAttribute) typeof(MyClass).GetCustomAttribute(typeof(MyCustomAttribute));
GetCustomAttribute还具有通用签名以指定要搜索的属性的类型。
var attribute = typeof(MyClass).GetCustomAttribute<MyCustomAttribute>();
布尔参数inherit可以传递给这两种方法。如果将此值设置为trueelement的祖先,则也将进行检查。
热门推荐
10 祝女儿简短祝福语大全
11 大学新年祝福语简短创意
12 元旦适合的祝福语简短
13 朋友出远门祝福语简短
14 初六简短的祝福语
15 祝男孩生日祝福语简短
16 同事调离的祝福语简短
17 拜年红包的祝福语简短
18 妈妈生日祝福语简短励志