RoyalBank
Client
- Регистрация
- 07.09.2015
- Сообщения
- 557
- Благодарностей
- 550
- Баллы
- 93
Через стримридер пробовали?
C#:
string path = @"C:\words.txt";
string word = "Zwinglianist";
bool result = false;
using (FileStream fs = File.Open(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
using (BufferedStream bs = new BufferedStream(fs))
using (StreamReader sr = new StreamReader(bs))
{
string line;
while ((line = sr.ReadLine()) != null)
{
if (line.Contains(word)) {
result = true;
break;
}
}
}