I am having the following problem:
I have a table T which has a column Name with names. The names have the following structure:
A\\\\B\\C
You can cre
You have to use "verbatim string".After using that string your Replace function will look like this
Replace(@"\", @"\\")
I hope it will help for you.