gpt4 book ai didi

c# - 在泛型类中注释构造函数的正确方法是什么?

转载 作者:IT王子 更新时间:2023-10-29 04:14:31 27 4
gpt4 key购买 nike

什么是正确的评论方式?

/// <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 提示它:

Warning 11 XML comment on'Data.Repository.Repository(Data.IUnitOfWork)' has cref attribute'Repository' that could not beresolved C:\Projects\xx\yy\DataAccess\Repository.cs 35 58 Data

最佳答案

你需要使用花括号:

/// <summary>
/// Initializes a new instance of the <see cref="Repository{T}"/> class.
/// </summary>

对于每个 typeparam,只需在大括号中添加一个附加值,用逗号分隔。

关于c# - 在泛型类中注释构造函数的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6868138/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com