HtmlTextWriter.DoubleQuoteChar Field

Definition

Represents the quotation mark (") character.

C#
public const char DoubleQuoteChar;

Field Value

Examples

The following code example shows how to render a border attribute for a <table> element. The code calls the Write method to render the attribute and its value and uses the Write method to render the EqualsDoubleQuoteString and DoubleQuoteChar fields.

This code example renders the following markup:

border="1"

C#
// Create a border attribute for the table,
// and set it to 1.
writer.Write("border");
writer.Write(HtmlTextWriter.EqualsDoubleQuoteString);
writer.Write("1");
writer.Write(HtmlTextWriter.DoubleQuoteChar);

Remarks

The DoubleQuoteChar field is used by the WriteAttribute method to close an attribute.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also