No. The method description is defined in the XML file (with the same name as the declaring assembly), extracted from the XML comments in the source code. Visual Studio uses this XML file to download these materials. This information is not found anywhere in the assembly metadata and, of course, is not available using reflection:
public void Something() { ... }
When the C # compiler is invoked using a switch /doc, it retrieves the XML tags and places it in an XML file. Visual Studio checks for the presence of an XML file along the referenced assembly and displays the corresponding description.
source
share