I have created an application that will save lists to a .dat file using a binary formatter and serializing the list.
I wish to then de serialize this list and display this within a text box.
Furthermore, I have tried using a for each loop to get every object from the list, but it won't continue through the rest of the lists and stops at the first list stored within the file.
I have been tasked with binary formatter even though Ive been informed its obsolete.
give this a try:
This assumes that instead of 1 list with many items, there are many lists with many items.
This structure seems odd to say the least, you should consider having 1 list with many items.