Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

using see cref with < > characters in XML Documentation? [duplicate]

Possible Duplicate:
How to reference generic classes and methods in xml documentation

i have been using the see cref tag and it works great but now i need to include a generic list of string[] in the see cref but the documentation doesn't correctly render.

    /// <returns>A <see cref="List<string[]>" /> that .......

I presume its something to do with the < and > and maybe []

Is this allowed, is there a work around?

like image 224
Martin Avatar asked Jan 28 '11 12:01

Martin


1 Answers

/// <returns>A <see cref="List{T}" /> that</returns>
like image 187
Pavel Surmenok Avatar answered Oct 29 '22 20:10

Pavel Surmenok