I have code like this.
td = new Test.Detail();
t = td.Details; // This is a list of strings
t.Add("aaa");
t.Add("bbb");
t.Add("ccc");
It's a source file in VS2010 and it's currently used to load some static data. Now the amount of data has grown so we are considering holding the data in txt files. That way it can be easily modified. I need some way to read this data into the program from my text files that look like this:
> test1
aaa
bbb
ccc
> test2
ddd
eee
fff
The code needs to read in the test1 into a variable, read in and add the following lines to nD until the blank line. At that point it needs to do some action. Then it needs to start again reading in test2.
Actually there is a lot more to this but I hope someone can give me some advice to get me started on reading data from a file in a loop until some point when I can restart the loop.
Thank you very much.