The <para> tag is for use inside a tag, such as <summary>, <remarks>, or <returns>, and lets you add paragraph to the text.

Syntax

<para>text</para>

Examples

Visual Basic

''' <summary>Our sample property.

''' <para>This is new paragraph</para>

''' </summary>

Property prop1() As String

C#

/// <summary>Our sample property.

/// <para>This is new paragraph</para>

/// </summary>

public string prop1

 

See Also

Comment Tags | XML Comments