I have the following code
string line = \"\"; while ((line = stringReader.ReadLine()) != null) { // split the lines for (int c = 0; c < line.Len
to remove all '\' from a string, simply do the following:
myString = myString.Replace("\\", "");