[Solved] In C#, what is the best way to read in a text file with thiis format and convert to list of objects?
The main problem is the presence of the category name before the headers and data. This creates a condition to consider while looping over the lines because when we read a category name we need to consider 4 rows while when reading the transaction data we have to loop over 3 rows. However there is … Read more