M
mp
when I write this in c# :
strFileToLoad = strFileToLoad.Substring(0, 2) +
strFileToLoad.Substring(2).Replace("\\", "\");
it doesnt like the last "\", and I want to replace \\ with \
what should I do?
Thanks
strFileToLoad = strFileToLoad.Substring(0, 2) +
strFileToLoad.Substring(2).Replace("\\", "\");
it doesnt like the last "\", and I want to replace \\ with \
what should I do?
Thanks