" " Double Quotes

Delimiter

Delimiter

Preferred

Double quotes are an alternate to single quotes.

In order to embed quotes or other characters within string literals use the following escape sequences.

\' - A single quote.
\" - A double quote.
\r - A carriage return character.
\n - A new-line character.
\t - A tab character.
\\ - A backslash character.

"String Literal"

[TagName: "String Literal"]