gpt4 book ai didi

visual-studio-2008 - 如何将 < 或 > 添加到 Visual Studio 中的摘要标签?

转载 作者:行者123 更新时间:2023-12-04 17:13:36 25 4
gpt4 key购买 nike

如何将 <(小于)或 >(大于)添加到 Visual Studio 中的摘要评论中?我在 Visual Studio 2008 中。

我有一个通用方法:

public bool IsMemberProtected<T>(Expression<Func<T, object>> expression)

希望有这样的摘要标签

    /// <summary>
/// Determines whether a member is protected.
///
/// Usage: IsMemberProtected<ExampleType>(x => x.Member)
/// </summary>


但是当我这样做时,当开发人员将鼠标悬停在代码中的方法上以查看摘要标记时,该属性的工具提示不再起作用。

想法?

最佳答案

您可以使用实体 &lt;&gt;<>分别。

请注意,这里您还使用了 <>写一个泛型类型。在这种情况下,有一个约定,如果您使用 cref标签然后你可以使用 GenericType{T}而不是丑陋的GenericType&lt;T&gt; .见 here想要查询更多的信息。

如果您必须写很多 <,那么该页面还有另一个建议。和 >将文本放入 CDATA 部分的符号:

/// <summary>
/// This a simple collection which implements <see cref="IEnumerable{T}" />
/// </summary>
/// <example>
/// <![CDATA[
/// SimpleList<int> intList = new SimpleList<int>();
/// ]]>
/// </example>

关于visual-studio-2008 - 如何将 < 或 > 添加到 Visual Studio 中的摘要标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2578861/

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