Я читаю текстовый файл построчно, пока все хорошо. Я просто использую это:
using (StreamReader sr = new StreamReader(this._inFilePath))
{
string line;
int index = 0;
// Read and display lines from the file until the end of
// the file is reached:
while ((line = sr.ReadLine()) != null)
{
//skip empty lines
if (line == "")
{
continue;
}
}
}
Теперь до меня дошло, что мне может понадобиться конвертировать файл в Unicode после прочтения. Как это сделать? Кто-нибудь использует класс Convert?