dajuric
dajuric

Reputation: 2507

Visual studio XML comment for generics

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

Answers (1)

keyboardP
keyboardP

Reputation: 69372

Try using { and } to represent the generic parameter(s)

/// ... <see cref="System.Collections.Generic.Dictionary{TKey, TValue}"/> matrix.

Upvotes: 4

Related Questions