c标签和code标签的区别
C# xml注释中,下面的标签有什么区别?
1. <c>
2. <code>
In C# xml comments, what is the difference between the tags below?
1. <c>
2. <code>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
假设您正在谈论 xml 注释中的标签、
c
就像 StackOverflow 中的反引号,而code
更像代码块。Assuming you are talking about tags in xml comments,
c
is like back-ticks in StackOverflow, whilecode
is more like code blocks.表示一小段代码。您将使用 c 标签来引起对结果文档中特定单词、短语或代码的注意。您将把 c 标签嵌套在其他标签内。
code标签与tag类似,但其目的是为了说明一个真实的代码使用示例。代码标签通常包含在标签集中(见下文)。
Indicates a short segment of code. You will use the c tag to draw attention to particular words, phrases or code in the resulting documentation. You will nest c tags within other tags.
The code tag is similar to the tag, but it is intended to illustrate a true code usage example. The code tag is generally enclosed within an tag set (see below).
如果您的意思是在代码注释中,则
(通常在
<示例>
) 表示多行说明性代码,其中 -as
仅代表要以代码字体编写的单个术语。使用 stackoverflow/markdown 进行比较,它们与段落中间的内联代码完全相同,vs
If you mean in code comments, then
<code>
(generally used within<example>
) represents multiple lines of illustrative code, where-as<c>
represents just a single term to be written in a code font.To use stackoverflow/markdown as a comparison, they are exactly the same as
inline code
in the middle of a paragrah, vs