Getting just \ in a C# string, escape sequence problem

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?
 
C

chasgl

Thanks, Also sorry about the duplicate posts, I was getting messages that the
post hadn't been posted.
 

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