使用c#.net我们可以从word文件中读取一行或符号

时间:2010-09-30 12:25:45

标签: c#-2.0

我们如何使用c#.net读取任何类型文件中的行或符号,我们可以读取键盘中可用的所有内容但我们无法读取其他符号是否可以使用C#读取其他符号。 net any anybudy可以帮助我

1 个答案:

答案 0 :(得分:0)

是的,我们可以:

using System;
using System.IO;

namespace IOTest
{
    public class program
    {
         public static void Main(string[] args)
         {
              using (Stream s = File.OpenRead(@"C:\AFile.file"))
              {
                   using (StreamReader sr = new StreamReader(s))
                   {
                        Console.WriteLine(sr.ReadLine());
                   }
              }
         }
    }
}

对于符号,您需要使用Regex或类似的东西......