Mega Code Archive
The following string is printed verbatim thus, all escape characters are displayed
using System;
using System.Collections.Generic;
using System.Text;
class Program
{
static void Main(string[] args)
{
Console.WriteLine(@"C:\MyApp\bin\Debug\a");
}
}