在C#xml评论中,下面的标签之间有什么区别?
1. <c>
2. <code>
答案 0 :(得分:5)
假设您在讨论tags in xml comments,c
就像StackOverflow中的反向标记一样,而code
更像是代码块。
/// <summary>
/// This is the <c>SomeMethod</c> method of the <c>Program</c> class.
/// </summary>
/// <param name="s">A string.</param>
/// <example>
/// You can use this method like this:
/// <code>
/// string x = SomeMethod("foobar");
/// Console.WriteLine(x);
/// </code>
/// </example>
static string SomeMethod(string s){
throw new NotImplementedException();
}
答案 1 :(得分:3)
<c>Your code sample.</c>
表示一小段代码。您将使用c标记在结果文档中引起对特定单词,短语或代码的注意。您将c标记嵌套在其他标记中。
<code>Your code sample.</code>
代码标记与标记类似,但它旨在说明真正的代码用法示例。代码标记通常包含在标记集中(见下文)。
答案 2 :(得分:3)