I have a list string full of a range of different types of data. I'm reading into the list string line at a time and with each line i split it using
string[] tableNa = line.Split(',');
this gets all the different pieces of data in a line that are seperated by commas. however i have some lines like this:
47,493,'1 = EMPTY, 2 = SEND, 3 = SENDING, 4 = SENT, 5 = NOTSENT. ',0,
and i would like the split to not work within the quote marks,as i need to keep this as one piece of data. Is this possible?