如何使用< >在 Visual Studio 评论中?

发布于 2024-09-09 17:02:25 字数 205 浏览 5 评论 0 原文

下面的注释只是 VS 中的一段 xml 注释,但我的问题是像 < > 破坏了 xml 结构。如何在 xml 注释中使用它们?

/// <param name="index">square index on board which 1<=index<=64</param>

Below comment is just a piece of xml comment in VS but my problem is characters like < > that break the xml structure. How can I use them in an xml comment?

/// <param name="index">square index on board which 1<=index<=64</param>

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

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

发布评论

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

评论(3

银河中√捞星星 2024-09-16 17:02:25

我会把它改写成一个句子,而不是一个方程式:

/// <param name="index">square index on board, between 1 and 64</param>

I would reword it to be more a sentence and less an equation:

/// <param name="index">square index on board, between 1 and 64</param>
甩你一脸翔 2024-09-16 17:02:25
/// <param name="index">square index on board which 1<=index<=64</param>

OR

/// <param name="index">square index on board which 1〈=index〈=64</param> 

后一个选项是 unicode: 〈 〉

/// <param name="index">square index on board which 1<=index<=64</param>

OR

/// <param name="index">square index on board which 1〈=index〈=64</param> 

The latter option is unicode: 〈 〉

彼岸花似海 2024-09-16 17:02:25

尝试对它们进行编码?使用<和>

Try encoding them? using < and >

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文