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

Syntax

<b>text</b>

Examples

Visual Basic

''' <summary>Our sample property.

''' <b>This is bold</b>

''' </summary>

Property prop1() As String

C#

/// <summary>Our sample property.

/// <b>This is bold</b>

/// </summary>

public string prop1

 

See Also