View Single Post
Old Apr 7th, 2008, 8:54 AM   #9
Ooble
I eat cake for breakfast.
 
Ooble's Avatar
 
Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 9 Ooble is on a distinguished road
Re: C# Stream Problems

The @ character means "don't allow escaping in the following string literal." You don't need it for "C:/" as it uses a forward-slash not a backslash, but, for example, these strings are syntactically equivalent:
"C:\\Program Files\\Developer\\Application\\Run.exe"
@"C:\Program Files\Developer\Application\Run.exe"
__________________
Me :: You :: Them
Ooble is offline   Reply With Quote