try
{
using (StreamReader readFile = new StreamReader(path))
{
string line;
string[] row;
while ((line = readFile.ReadLine()) != null)
{
row = line.Split('\t');
foreach (string[] blah in thisstring)
{
if (blah[0] == row[0])
{
parsedData.Add(line);
}
}
count++;
}
}
}
and how can I keep this from happening, the text file it reads is about 200 megs. I've also tried to just split this file with a file splitter and four have failed me so far. :(


Sign In
Create Account


Back to top









