1

我只是在记录我写的一个文件,当我发现<returns> STUFF </returns>没有出现时,当我将鼠标悬停在我的方法上时,虽然<summary> STUFF </summary>确实出现了!

这是我的做法:

/// <summary>
/// Requests the first service of type T.</summary>
/// <returns>
/// The requested service if found, null otherwise.</returns>
public static T Request<T>() where T : class, IService, new()
{
    return Request<T>(0);
}

别的地方:

var inventory = Services.Request<InventoryManager>();

将鼠标悬停在请求上-仅查看摘要

这是我第一次通过///and 标签使用官方文档,如果这是一个愚蠢的问题,我很抱歉,因为我确定我错过了一个非常简单的选项/设置。我查找了问题,但没有得到准确的结果 - 感谢您的帮助。

4

1 回答 1

1

默认情况下,VS.Net 的悬停工具提示不显示return文档。(尝试使用任何内置的 .Net 类。)

于 2013-11-10T15:15:10.963 回答