alternate way of specifying string path to variable in C#
- by Ruben Guico
Hi
Is there another way of assigning string path to variable aside from this:
strPath = @"C:\Myfile.txt";
is there another way instead using "@" sign in the string path.
thanks.