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#程序设计有所帮助。
上一篇: 美国研究发现针灸止痛的原理
下一篇: 什么时候针灸最好?针灸治疗有哪些好处?