I have used XML comment on a property which is a type of List.
However when I hover my mouse to that property, Visual Studio shows it as List<T>
.
When I build the documentation with docFx, it still renders the comment as List<T>
instead of List<ClassXXXX>
.
I have tried the solution recommended by previous post here but it does not work.
Here is the XML comment with C# code for your reference:
/// <summary>
/// Gets and sets the <see cref="List{T}"/> .
/// </summary>
public List<ClassXXXX> ListFoo { get; set; }
What can I do in the XML comment so I can see List<ClassXXXX>
in the intellisense and documentation?
Thanks