alternate way of specifying string path to variable in C#
Posted
by Ruben Guico
on Stack Overflow
See other posts from Stack Overflow
or by Ruben Guico
Published on 2010-03-09T03:44:14Z
Indexed on
2010/03/09
3:51 UTC
Read the original article
Hit count: 239
c#
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.
© Stack Overflow or respective owner