你知道当你去对象浏览器并选择一个类型时,它的名字下面有一个摘要吗?
例如:
public sealed class Activator
Member of System
Summary:
Contains methods to create types of objects locally or remotely, or obtain references to existing remote objects. This class cannot be inherited.
是否可以使用Reflection获取该信息?如果是这样,它是如何完成的?如果那不可能,那么数据存储在哪里?
答案 0 :(得分:3)
单独评论can’t be discovered by reflection
的原因是因为它们是not included in the .NET assemblies
(。。EXE或.DLL文件),但通常是included as .XML files to accompany the assembly files
。
DocsByReflection
可用于获取摘要。有关详细信息,请参阅链接here。
答案 1 :(得分:2)