In the image below I need to extract the data between the two red lines. This data also needs to be used in a foreach loop as there is more than one table in each file:

I have tried using a Substring but the character underneath the second line prevents me as it cannot be referenced in c#
This is a Purchase Order for a Company and I need to read the 1st column as the Key, the RecNum as Number, the Pos as firstPos, the width as Width, the Datatype, the Code and Qual together as qualifier. then also a secondpos as firstpos + width. The file comes in like this and the program that im making will create an xml file.
The XML file is already working perfectly with another program that uses the same XML serializer i just need to get the data into lists.
fixed width. See this question, and this answer to make your life easier - stackoverflow.com/a/162909/1073107 Given your file is fixed width, you could actually just parse it line-by-line using absolute values for the substring argument, but why bother when there are perfectly good parsers out there like FileHelpers which will make this task easy. – dash Jan 21 at 11:27