you know how when you go to object browser and you select a type there is a summary below its name?
For example:
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.
Is it possible to obtain that information using Reflection? If so, how is it done? If that’s not possible, where is that data stored?
The reason the comments
can’t be discovered by reflectionalone is because they arenot included in the .NET assemblies(.EXE or .DLL files), but are conventionallyincluded as .XML files to accompany the assembly files.DocsByReflectioncan be used to get the summary. Refer to the link here for details.