load the assembly and go through its CustomAttributes, seehttp://www.dotnet247.com/247reference/msgs/15/78041.aspx

解决方案 »

  1.   

    .net就提供了这样的工具,好象叫ildasm.exe,你用.net的命令窗口,然后运行ildasm.exe,打开你要看的.dll就可以看到它的元数据了.
      

  2.   

    使用
    System.Reflection命名空间,就像saucer大哥说的,你可以访问定制特性。
    你也可以通过
    System.Attribute类来访问元数据。
    如他的三个静态方法;
    GetCustomAttribute
    GetCustomAttributes
    IsDefined 
    使用参考,
    ms-help://MS.NETFrameworkSDKv1.1.CHS/cpref/html/frlrfSystemAttributeMembersTopic.htm不过伪定制特性不能通过上面的方法访问。