我开始使用XML文档作为指导方法:https://msdn.microsoft.com/en-us/library/aa288481(VS.71).aspx
但似乎只有您第一次输入文档时才会被IntelliSense选中。
这是方法的标题:
/// <summary>
/// Add a Rit to the planning table.</summary>
/// <returns>
/// Returns the PlanningID for the inserted Planning.</returns>
public int AddRitToPlanning(int driverID, int truckID, int ritID, DateTime planningDate, int startTime, int hours)
Intellisense只展示了这个:
将Rit添加到计划表中。
而不是returns
中的文字。
我尝试将summary
中的文本更改为完全不同的文本,但IntelliSense也不会显示该文本。
/// <summary>
/// Complete other text here.</summary>
/// <returns>
/// Returns the PlanningID for the inserted Planning.</returns>
public int AddRitToPlanning(int driverID, int truckID, int ritID, DateTime planningDate, int startTime, int hours)
然后IntelliSense仍会显示:
将Rit添加到计划表中。
我已经尝试了
我在评论中尝试了什么
我清理了项目,现在IntelliSense显示了摘要标记中的更改。
但returns
标记仍未显示,因此问题仍然存在。
如何强制IntelliSense在XML文档中获取更改并在returns
标记中显示文本?