Consider below is text file:
Read:2019/09/24, 12345, abcdefg
Skip this line
Read:2019/09/24, 12345, abcdefg
Skip this line
Read:2019/09/24, 12345, abcdefg
Skip this line
Read:2019/09/24, 12345, abcdefg
Skip 20 lines
I am learning some tricky file reading in c#, I have problem in reading a text file. I understood how to read the file from bottom using Reverse function. But I need to read the file skipping bottom 20 lines and reading the alternative lines delimited by (,). Please help me to understand how to get this logic done.
Thank you