I\'m using Path.Combine like so:
Path.Combine(\"test1/test2\", \"test3\\\\test4\");
The output I get is:
test1/test2\\test3\\te
No, the seperator character is defined as a Read Only.
http://msdn.microsoft.com/en-us/library/system.io.path.pathseparator.aspx
You should use a Replace as it's a trivial change.