Verbatim string allows you to specify the string in the formated order that you type. These string can be specified as @"Something here".
The Verbatim string Ignores Escape sequences
\t \n \r
etc.,
At the Same time they do detect it when you actual typed it in your string.
Conside the below code sample:
static void Main(string[] args)
{
string verbatim_str = @"The Game.exe requires Command line parameters
Usage Game.exe \t \n \r
Here,
t : play tiles
n :Number of tiles
r: Restart Game" ;
Console.WriteLine(verbatim_str);
}
Note, in the Example we like
\t \n \r
to be appeared as it is and at the same time expecting the string to detect newline and tab that we typed.