I have an Excel spreadsheet being converted into a CSV file in C#, but am having a problem dealing with line breaks. For instance:
\"John\",\"23\",\"555-555
Read the line. Split into columns(fields). If you have enough columns expected for each line, then process. If not, read the next line, and capture the remaining columns until you get what you need. Repeat.