I'm running into a problem where I'm reading a CSV file and I don't see any '\' in the file.
When I split the string by ',' and store it into a string variable, this is what the string looks like.
"\"3040063816\""
The whole entire string is this before spliting
"\"3040063816\",\"123456789\",\"0.00\",\"0.00\",\"-95.99\",\"10/28/19\",\"09:04:11\",\"1\"\r"
How do you remove '\' from the string?
Because when I try to convert/parse the number into an INT, it gives me an error. I've tried to replace(@"\", string.empty) and it doesn't work.