如何在C#.NET文档中添加换行符
这应该是更容易…
我想添加一个“编码”换行符到我的代码中的XML文档
/// <summary> /// Get a human-readable variant of the SQL WHERE statement of the search element. <br/> /// Rather than return SQL, this method returns a string with icon-tokens, which /// could be used to represent the search in a condensed pictogram format. /// </summary>
正如你所看到的,我发现了一些答案,certificate添加<和>括号。 有趣的是,良好的'ol'换行符不会在Intellisensepopup窗口中创build换行符。
我觉得这很烦人
有什么build议么?
添加一个<para />
。 这会给你一个段落。
这是我的用法,比如<br/>
它的工作:)
/// <summary> /// Value: 0/1/2 /// <para/>0 foo, /// <para/>1 bar, /// <para/>2 other /// </summary>
添加一个带有特殊字符的<para>
标签,255个字符或不可见字符 。
/// <summary> /// Some text /// <para> </para> /// More text /// </summary> /// <param name="str">Some string</param> public void SomeMethod(string str) { }
它会像这样工作:
<br />
似乎不起作用,有时候并不是把这个句子分开,而是把这个句子分隔开来,就像是为了分离一个空白的分隔线一样。 我在这里提到这一点,因为这个问题似乎是对这种性质的许多封闭的问题的父母。
我发现唯一的工作是
<para> </para>
例如
/// <summary> /// <para> /// "This sentence shows up when the type is hovered" /// </para> /// <para> </para> /// <para>int PrimaryKey</para> /// <para> </para> /// <para>virtual Relation Relation</para> /// </summary>
结果是
"This sentence shows up when the type is hovered" int PrimaryKey virtual Relation Relation