所以您知道如何定义方法注释,例如
/// <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)
有什么方法可以在代码中检索它。我的意思不是解析 .cs 文件,而是实际获取它以便我可以使用它。就像是
<method>.XMLComment
提前致谢!