The <u> tag is for use inside a tag, such as <summary>, <remarks>, or <returns>, and lets you add underlined text.

Syntax

<u>text</u>

Examples

Visual Basic

''' <summary>Our sample property.

''' <u>This is underlined</u>

''' </summary>

Property prop1() As String

C#

/// <summary>Our sample property.

/// <u>This is underlined</u>

/// </summary>

public string prop1

 

See Also

Comment Tags | XML Comments