欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#使用StreamReader读取文件的方法

程序员文章站 2022-10-25 19:59:09
本文实例讲述了c#使用streamreader读取文件的方法。分享给大家供大家参考。具体实现方法如下: using system; using system.c...

本文实例讲述了c#使用streamreader读取文件的方法。分享给大家供大家参考。具体实现方法如下:

using system;
using system.collections.generic;
using system.io;
using system.linq;
using system.text;
using system.threading.tasks;
namespace w
{
  class program
  {
    static void main(string[] args)
    {
      using (streamreader sr = new streamreader (@"c:\1.txt",encoding.utf8,true))
      {
        while (!sr.endofstream)
        {
          console.writeline(sr.readline());
        }
      }
      console.writeline("读取完毕");
      console.readkey();
    }
  }
}

希望本文所述对大家的c#程序设计有所帮助。