Reputation: 2507
How can I write this in a proper way:
/// <summary>
/// Provides extension methods for <see cref="System.Collections.Generic.Dictionary"/> matrix.
/// </summary>
public static class DictonaryMatExtensions
{...}
System.Collections.Generic.Dictionary
part is bothering me.
Upvotes: 2
Views: 761
Reputation: 69372
Try using {
and }
to represent the generic parameter(s)
/// ... <see cref="System.Collections.Generic.Dictionary{TKey, TValue}"/> matrix.
Upvotes: 4