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?

0

1 Answer 1

27
/// <returns>A <see cref="List{T}" /> that</returns>
Sign up to request clarification or add additional context in comments.

3 Comments

Thanks Pavel, but in the produced documentation it displays this A [!:List<System.String>] that - Notice the !:
Try List{String}. It works fine.
You can find more details on syntax here: msdn.microsoft.com/en-us/library/acd0tfbe(VS.85).aspx

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.