Senin, 19 November 2007

Verbatim


public class Verbatim


{


static void Main()


{


//all the preceding after @ is not treated as escape character


string fileLocation = @"c:\datafile.txt";


Console.WriteLine("File is located at {0}",


fileLocation);


//booking a word in all the words already booked in c#


int @for = 12;


Console.WriteLine(@for.ToString());


Console.ReadLine();


}


 


}

Tidak ada komentar: