I wrote method description in one 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";
        }
    }
}
In this project I see all tooltips well.
But from other project after I add this dll (I added link to dll from Debug folder) when I'm writing ParseHtml.GetAbsoluteUrl I don't see any description.