我在一个dll中写了方法描述:
namespace DriveLibrary.Web {
public class ParseHtml {
/// <summary>
/// Get Absolute URL adress from domain and arbitrary url (absolute or relative).
/// </summary>
/// <param name="ancor">Absolute or relative URL ("/page.html" or "page.html" or "http://domain.com/page.html")</param>
/// <param name="domain">Domain url with or without slash in the end ("http://ya.ru/" or "https://google.com")</param>
/// <param name="replaceAmp">Whether replase "&amp;" with "&"</param>
/// <returns></returns>
static public string GetAbsoluteUrl (string ancor, string domain, bool replaceAmp = true) {
return "abs url";
}
}
}
在这个项目中,我看到了所有工具提示。
但是当我在写ParseHtml.GetAbsoluteUrl
后我添加了这个dll(我在Debug文件夹中添加了dll的链接)之后,从其他项目开始我没有看到任何描述。