C#xml文档注释中的引用泛型参数

时间:2015-02-26 14:45:58

标签: c# .net generics comments xml-documentation

如何在c#文档注释中使用泛型参数正确引用重载方法?我应该在cref属性中加入什么?我希望Visual Studio 2010(和ReSharper)正确解析它。

/// <summary>
/// <see cref="MethodName(IEnumerable<string>)"/>
/// </summary>
public class ClassName
{

    public void MethodName(IEnumerable<string> param)
    {
        // code 
    }

    public void MethodName(string param)
    {
        // code 
    }
}

我在这篇文章中找不到答案(尽管我可能错过了它)。 https://msdn.microsoft.com/en-us/library/fsbx0t7x.aspx

1 个答案:

答案 0 :(得分:0)

使用CodingK0ala的链接,我终于能够解决它了,即使我之前看过这篇文章并且没有找到答案。

<see cref="MethodName(IEnumerable{string})"/>

感谢。

编辑:其实我不知道那时看起来如此难以理解。 :)