C#中怎样在注释中添加类型名称

https://msdn.microsoft.com/en-us/library/b2s063f7.aspx
■网友
/// \u0026lt;summary\u0026gt;确定是否 \u0026lt;see cref="T:System.Collections.Generic.Dictionary`2" /\u0026gt; 包含指定键。\u0026lt;/summary\u0026gt; /// \u0026lt;returns\u0026gt;如果 true 包含具有指定键的元素,则为 \u0026lt;see cref="T:System.Collections.Generic.Dictionary`2" /\u0026gt;;否则为 false。\u0026lt;/returns\u0026gt; /// \u0026lt;param name="key"\u0026gt;要在 \u0026lt;see cref="T:System.Collections.Generic.Dictionary`2" /\u0026gt; 中定位的键。\u0026lt;/param\u0026gt; /// \u0026lt;exception cref="T:System.ArgumentNullException"\u0026gt; /// \u0026lt;paramref name="key" /\u0026gt; 为 null。\u0026lt;/exception\u0026gt; public bool ContainsKey(TKey key);你是指这个么?
■网友
VS里你在类/方法上面打三个“/”试试?


    推荐阅读