XML 注释——如何正确标记 see Also 标签?

发布于 2024-11-05 10:31:15 字数 535 浏览 6 评论 0原文

我有以下内容,但不确定如何在 XML 注释中正确引用它:

public static class FooExtensions
{
    public static Nullable<T> FooX<T>(this Nullable<T> foo) { ... }
}


public class Bar
{
    /// <summary>
    /// Bar Function
    /// </summary>
    /// <seealso cref="??"/>
    public void BarFunc() { ... }
}

所以,我的猜测是 ,但我并不 100% 认为这是正确的。有谁知道吗?


哦,我有 ECMA PDF 文档,但即使如此我仍然无法真正弄清楚。

I have the following and I'm not sure how to properly reference this in my XML commenting:

public static class FooExtensions
{
    public static Nullable<T> FooX<T>(this Nullable<T> foo) { ... }
}


public class Bar
{
    /// <summary>
    /// Bar Function
    /// </summary>
    /// <seealso cref="??"/>
    public void BarFunc() { ... }
}

So, my guess is <seealso cref="M:MyNamespace.FooExtensions.FooX{T}(this Nullable{T} foo)"/>, but I'm not 100% if that's correct. Does anyone know?


Oh, and I have the ECMA PDF document, but I still can't really figure it out even with that.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枯叶蝶 2024-11-12 10:31:15

您不需要标记参数的 this 部分,也不需要标记它的名称,因此您应该能够使用它:

<seealso cref="MyNamespace.FooExtensions.FooX{T}(Nullable{T})"/>

You don't need to mark the this portion of the parameter, nor the name of it, so you should be able to use this:

<seealso cref="MyNamespace.FooExtensions.FooX{T}(Nullable{T})"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文