how do I get just one \, problem with escape sequence

C

chasgl

I am using Visual Studio 2009 creating a c# program. I want to create a
string c:\GoToWebSite.aspx when I try to do it this way :
string FileStr = “c:\GoToWebSite.aspx". I get an error message
Error 3 Unrecognized escape sequence When I try FileStr =
“c:\\GoToWebSite.aspx". The resulting string is c:\\GoToWebSite.aspx. . When
I try FileStr = @“c:\GoToWebSite.aspx.†the resulting string is =
c:\\GoToWebSite. How do I just get c:\GotoWebSite.aspx?
 
M

miher

Hi,

Both solutions You written is good for this case, and You are actually
getting c:\GotoWebSite.aspx, but when You look at a strings value, VS will
show it with escape chars, so it will shown with \\ but its actually \ :)

Hope You find this useful.
-Zsolt
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top