c# – Metro风格应用程序中的自定义类属性

前端之家收集整理的这篇文章主要介绍了c# – Metro风格应用程序中的自定义类属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在Metro Style App便携式库中定义和检索一个类的自定义属性.

就像是

[AttributeUsage(AttributeTargets.Class)]
public class FooAttribute : Attribute
{
}

[Foo]
public class Bar
{
}


class Program
{
    static void Main(string[] args)
    {
        var attrs = CustomAttributeExtensions.GetCustomAttribute<FooAttribute>(typeof(Bar));
    }
}

这在普通的4.5工作,但在一个便携式图书馆,针对地铁风格的应用程序,它告诉我

Cannot convert type 'System.Type' to 'System.Reflection.MemberInfo'

谢谢

解决方法

根据OP:

You need to do var attrs = CustomAttributeExtensions.GetCustomAttribute(typeof(Bar).GetTypeIn‌​fo());

这似乎与the documentation一致

原文链接:https://www.f2er.com/csharp/95212.html

猜你在找的C#相关文章