Scenario:
- I got a .txt File with 10 lines of text.
- I have two Streamreaders (reader1, reader2).
- I want reader1 to read the lines 1-6
- After that I want reader2 to read the lines 7-10
Therefore I need to get the last position of reader1 and I have to start reader2 at the same position plus one.
Is this possible with Streamreader? Are there any "positions", indexes or something similar which could help me to navigate trough the .txt file.