c#方法工具提示不会出现在其他项目中

时间:2015-06-17 18:48:10

标签: c# portable-class-library summary

我在一个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 (&quot;/page.html&quot; or &quot;page.html&quot; or &quot;http://domain.com/page.html&quot;)</param>
        /// <param name="domain">Domain url with or without slash in the end (&quot;http://ya.ru/&quot; or &quot;https://google.com&quot;)</param>
        /// <param name="replaceAmp">Whether replase &quot;&amp;amp;&quot; with &quot;&amp;&quot;</param>
        /// <returns></returns>
        static public string GetAbsoluteUrl (string ancor, string domain, bool replaceAmp = true) {
            return "abs url";
        }
    }
}

在这个项目中,我看到了所有工具提示。

但是当我在写ParseHtml.GetAbsoluteUrl后我添加了这个dll(我在Debug文件夹中添加了dll的链接)之后,从其他项目开始我没有看到任何描述。

0 个答案:

没有答案