What does "@" mean in C#

c#

Solution

It means interpret the following string as literal. Meaning, the `\` in the string will actually be a `"\"` in the output, rather than having to put `"\\"` to mean the literal character

Problem

Possible Duplicate: when to use @ in c# ? F.e. `string sqlSelect = @"SELECT * FROM Sales".`

Original source

Related problems