Click to expand
Sandcastle XML Comments Guide

para

This element is used to start a new paragraph within other elements.

Syntax

This inline block element can be used within any other element.

<para>paragraph content</para>
Remarks

As an alternative, you can use the HTML <p /> or <p> </p> tags to create paragraphs. Making the element self-closing or empty will cause the element to be ignored unless it creates an initial paragraph break.

Example
/// <summary> 
/// A simple demonstration of the <c>para</c> element. 
/// </summary> 
/// <remarks>The <c>para</c> element on the first block of text is 
/// optional. 
///  
/// <para>Subsequent blocks of text must be wrapped in it to create new 
/// paragraphs.</para> 
///  
/// <para>Paragraph 1.</para> 
/// <para>Paragraph 2.</para> 
/// <para /> 
/// <para></para> 
/// <para>Self-closing and empty paragraphs are ignored unless they create 
/// an initial paragraph break.</para> 
/// <para>Paragraph 4.</para> 
///  
/// <p />HTML paragraph elements can also be used. 
/// <p>They work the same way.</p></remarks> 
/// <conceptualLink target="c7973ac7-5a4f-4e4d-9786-5ce659ac8e24" /> 
public void ParagraphExample()
{
}
See Also

Reference

Other Resources