I have a file that has say four columns and infinite rows. Before dotnet I would create a filestream object (inFile) and use it like this:
inFile >> data[1][0] >> data[1][1] >> data[1][2] and so on.
How can I do this same parsing using the streamreader or textreader? I cant seem to get this to work the same.
inFile >> data[1][0] >> data[1][1] >> data[1][2] and so on.
How can I do this same parsing using the streamreader or textreader? I cant seem to get this to work the same.