Код: Выделить всё
words = new List();
Console.WriteLine("Please wait, compiling words list...");
TextReader tr = new StreamReader(DICT);
string line = tr.ReadLine();
while (line != "" && line != null) {
words.Add(new Word(line));
line = tr.ReadLine();
}
Console.WriteLine("List compiled with " + words.Count + " words.");
Спасибо.
Подробнее здесь: https://stackoverflow.com/questions/335 ... ader-limit