G
Guest
string foo = "v:\\bar.txt";
foo.Replace(@"\\",@"\");
if(foo == "v:\\bar.txt")
MessageBox.Show("Why the heck didn't Replace work? I'm confusied!");
foo.Replace(@"\\",@"\");
if(foo == "v:\\bar.txt")
MessageBox.Show("Why the heck didn't Replace work? I'm confusied!");