下面的评论只是 VS 中的一段 xml 评论,但我的问题是这样的字符< >
破坏了 xml 结构。如何在 xml 注释中使用它们?
/// <param name="index">square index on board which 1<=index<=64</param>
下面的评论只是 VS 中的一段 xml 评论,但我的问题是这样的字符< >
破坏了 xml 结构。如何在 xml 注释中使用它们?
/// <param name="index">square index on board which 1<=index<=64</param>
我会把它改写成一个句子,而不是一个方程:
/// <param name="index">square index on board, between 1 and 64</param>
尝试对它们进行编码?使用 < 和>
/// <param name="index">square index on board which 1<=index<=64</param>
或者
/// <param name="index">square index on board which 1〈=index〈=64</param>
后一个选项是 unicode:< ></p>