15

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?

Community
  • 1
  • 1
Martin
  • 23,844
  • 55
  • 201
  • 327

1 Answers1

26
/// <returns>A <see cref="List{T}" /> that</returns>
Pavel Surmenok
  • 4,584
  • 4
  • 30
  • 33