我已经在一种类型为List的属性上使用了XML注释。
但是,当我将鼠标悬停在该属性上时,Visual Studio会将其显示为List<T>
。
当我使用docFx构建文档时,它仍将注释显示为List<T>
而不是List<ClassXXXX>
。
我在这里尝试过previous post推荐的解决方案,但是它不起作用。
以下是带有C#代码的XML注释供您参考:
/// <summary>
/// Gets and sets the <see cref="List{T}"/> .
/// </summary>
public List<ClassXXXX> ListFoo { get; set; }
我可以在XML注释中做什么,以便可以在智能感知和文档中看到List<ClassXXXX>
?
谢谢
答案 0 :(得分:0)
在
/// Gets and sets the <see cref="List{T}">List<ClassXXXX></see> .
您不能直接在cref属性中指定List