对此发表评论的正确方法是什么?
/// <summary>
/// Initializes a new instance of the <see cref="Repository"/> class.
/// </summary>
/// <param name="unitOfWork">The unit of work.</param>
public Repository(IUnitOfWork unitOfWork)
{
this.UnitOfWork = unitOfWork;
}
VS提示它:最佳答案
您需要使用花括号:
/// <summary>
/// Initializes a new instance of the <see cref="Repository{T}"/> class.
/// </summary>
对于每个typeparam
,只需在括号中添加一个附加值,并用逗号分隔。关于c# - 在通用类中注释构造函数的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6868138/