I am going to be reading some data from a file, and I would like to make a method that reads all the lines from the file and saves them in a variable to return from the method.
The problem is that each line in the file might not have the same fields every time, but it does contain [FieldName, Value]
So I have used a Map to hold one line from the file at a time, and that works.
But now my problem is, where should I store all the Map variables per line that I get?
Anyone have an idea?
*This post is locked for comments