G
Guest
OpenFileDialog gives me the following, which I place in tbDevPath.Text:
x:\\myVob\\mySolution\\mySolution.sln
I really need this path to be single-backslashes, not double-backslashes, so
I tried the following:
string updatedDevPath = Regex.Replace(tbDevPath.Text, @"^\\\\$", "\\")
This still leaves me with double-backslashes. Any suggestions?
Thanks,
Randy
x:\\myVob\\mySolution\\mySolution.sln
I really need this path to be single-backslashes, not double-backslashes, so
I tried the following:
string updatedDevPath = Regex.Replace(tbDevPath.Text, @"^\\\\$", "\\")
This still leaves me with double-backslashes. Any suggestions?
Thanks,
Randy