开发者

Getting a type's member description

开发者 https://www.devze.com 2023-01-25 14:25 出处:网络
I am writing a program which utilises the System.Reflection namespace of the Microsoft .NET 4.0 Framework, however there is a piece of information that I require which I cannot find or does not exist

I am writing a program which utilises the System.Reflection namespace of the Microsoft .NET 4.0 Framework, however there is a piece of information that I require which I cannot find or does not exist in the namespace.

In Visual Studio when you access a type's members the IntelliSense provides a brief description of the member at hand. For example, the System.Object.Equals method has the description: "Determines whether the specified System.开发者_Go百科Object is equal to the current System.Object."

Does there exist any methods/properties in the framework which allow me to get the description of a type in an assembly?

Thanks


That information is not inside the assembly, but is obtained from the matching .xml file - i.e. foo.dll can optionally have foo.dll.xml. You would need to query the data from there, but note that in many cases this data is not deployed with 3rd-party dlls.

0

精彩评论

暂无评论...
验证码 换一张
取 消