Ticket #22 (closed defect: fixed)

Opened 4 months ago

Last modified 4 months ago

Parser: Expressions doesn't support verbatim strings (@"...")

Reported by: marius Assigned to:
Priority: major Component:
Keywords: Cc:

Description

Failing test case: ${@" \"" "}, expected output: \" , actual: ${@" \"" "}

Another: ${@" \""} "}, expected output: \"} , actual: compilation error (Unexpected characted '\').

Output.Write(@" \"");
Output.Write(" \"}");
//-----------^------- <- string terminates

Change History

07/26/08 04:36:42 changed by louis.dejardin

  • status changed from new to closed.
  • resolution set to fixed.

Added single- and double-quote versions of verbatim strings

Excellent description, by the way.