using System;
public class Program
{
public static void Main()
// escape sequence characters
string quote = "\"No problem can be solved from the same level of consciousness that created it.\" - Albert Einstein";
Console.WriteLine(quote);
// verbatim literal
string file_path = @"C:\darcyc\documents\work";
Console.WriteLine(file_path);
}