The <para> tag is used to add structure to text.
<para [lang="language"]>content</para>
where:
- lang="language" [NDoc3 extension]
- Applies a filter for this language. (Optional)
- content
- The text of the paragraph.
Applies To
Can be used inline within any other markup.
Remarks
This tag is for use inside a tag, such as <summary>, <remarks>, or <returns>, and lets you add structure to the text.
A language filter can be attached using the optional lang attribute. Standard languages are Visual Basic, C#, C++ and JScript. Multiple languages can be specified as a comma separated list such as "Visual Basic, C#, C++".
ExampleV
See <summary> for an example of using this tag.