在XML文档中使用带<>字符的cref?

Mar*_*tin 10 .net c# xml-documentation xml-comments

可能重复:
如何在xml文档中引用泛型类和方法

我一直在使用see cref标签,它工作得很好,但现在我需要在see cref中包含一个string []的通用列表,但是文档没有正确呈现.

    /// <returns>A <see cref="List<string[]>" /> that .......
Run Code Online (Sandbox Code Playgroud)

我认为它与<和>有关,也许[]

这是允许的,有解决方法吗?

Pav*_*nok 19

/// <returns>A <see cref="List{T}" /> that</returns>
Run Code Online (Sandbox Code Playgroud)