I am using C#. I have scoured the examples, and tried for hours. This situation is different. I can't find a solution.
I have a long string captured from a device on a serial port. The string's format is:
integer,integerCRLFinteger,integerCRLF
(repeats...). Ends with CRLF.
If you show this string in a RichTextBox it looks like:
2442,6266
7727,2727
6320,272
etc...
So, again, the string's format is
TextWhichIsAnInteger,TextWhichIsAIntegerCRLF
(repeats).
I would like to get it into two arrays (or lists) of type int. And, as a bonus, into a 2 column array or list of paired ints. This is driving me nuts. If you can help provide the code, I will be completely grateful and will worship you forever.