The @ prefix turns off the processing of escape characters.

image_pdfimage_print
   
 
using System;
using System.Text;

class StringApp {
    static void Main(string[] args) {
        string finalString = @"
	String file: 'C:MyAppStrings'";
        Console.WriteLine(finalString);

    }
}