Hey,
So you know how your able to define a method comment such as
/// <summary>
/// Finds the site and information by site ID.
/// </summary>
/// <param name="siteID">The site ID.</param>
/// <param name="customerLink">The customer link.</param>
/// <returns></returns>
public static Site FindSiteAndInformationBySiteID(int siteID, int customerLink)
Is there any way that you can retrieve this in code. By this I don't mean parsing the .cs file but actually getting it so I can use it. Something like
<method>.XMLComment
Thanks in advance!