I did lookup old posts but this does not seem to be working…….I want to basically skip reading first 150 rows….
using (StreamReader stream = new StreamReader(FileInfo.FullName))
{
string line;
while(!stream.EndOfStream)
{
for (int i = 1; i >= 150; i++)
{
line = stream.ReadLine();
}
}
}
Thanks,
1 Answer