Показать сообщение отдельно
Старый 18.02.2005, 08:35   #4   
_
 
Сообщений: 495
Регистрация: 10.12.2002
Возраст: 46

vicmb вне форума Не в сети
[C#]
using System;
using System.IO;

class Test
{
public static void Main()
{
try
{
// Create an instance of StreamReader to read from a file.
// The using statement also closes the StreamReader.
using (StreamReader sr = new StreamReader("TestFile.txt", Encoding))
{
String line;
// Read and display lines from the file until the end of
// the file is reached.
while ((line = sr.ReadLine()) != null)
{
Console.WriteLine(line);
}
}
}
catch (Exception e)
{
// Let the user know what went wrong.
Console.WriteLine("The file could not be read:");
Console.WriteLine(e.Message);
}
}
}


А вместо Encoding вставляешь какой-нибудь юникод. Вот. А вообще в MSDN про это есть.
  Ответить с цитированием