我怎样才能用恰当的方式写这篇文章:
/// <summary>
/// Provides extension methods for <see cref="System.Collections.Generic.Dictionary"/> matrix.
/// </summary>
public static class DictonaryMatExtensions
{...}System.Collections.Generic.Dictionary的角色在困扰着我。
发布于 2014-07-06 15:18:42
尝试使用{和}来表示泛型参数
/// ... <see cref="System.Collections.Generic.Dictionary{TKey, TValue}"/> matrix.https://stackoverflow.com/questions/24596992
复制相似问题