I want to read a CSV file using TextFieldParser with with the filed in double quotes and seperated with commas as the struture. How to get field values without double quotes after reading.
CSV struture is
"val1","val2","val3" "val4","val5","val6"
converted to val1,val2,val3 val4,val5,val6