码迷,mamicode.com
首页 > Windows程序 > 详细

C# StreamReader

时间:2017-09-30 19:49:07      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:ring   new   amr   print   null   console   readline   using   adl   

using (StreamReader sr = new StreamReader("test.txt"))
{
string line = null;
while (((line = sr.ReadLine())) != null)
{
Console.WriteLine(line);
}
}

或者
using (StreamReader sr = new StreamReader("test.txt"))
{
while (!sr.EndOfStream)
{
JPrint(sr.ReadLine());
}
}

C# StreamReader

标签:ring   new   amr   print   null   console   readline   using   adl   

原文地址:http://www.cnblogs.com/zhaoxianglong1987/p/7615645.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!