Create StreamReader strReader = New StreamReader("file.txt")
And use the method StreamReader.read(new char[130], 0, 130);
The 130 first character will be placed into the char array. Then, you have to offset until the end of the file.
The documentation of the function is here: http://msdn.microsoft.com/en-us/library/9kstw824(v=vs.110).aspx
Edit:
An even better way will be to use the readBlocks method as suggested here : When to use StreamReader.ReadBlock()?
char buffer = char[130];
int len = 0;
while((len = strReader.ReadBlock(buffer, 0 , 130)) != 0)
{
Dim value As String = New String(buffer);
Console.WriteLine(value);
}
The while will go on until there are remaining characters in your file. The value
String contains your line of 130 character and you can do whatever you want with it.