C#逐行读取文件的方法
本文实例讲述了C#逐行读取文件的方法。分享给大家供大家参考。具体如下:
这里使用C#逐行读取文件,对于大文件的读取非常有用。
StreamReadersr=newStreamReader("fileName.txt"); stringline; while((line=sr.ReadLine())!=null){ Console.WriteLine("xmltemplate:"+line); } if(sr!=null)sr.Close(); //shouldbeina"finally"or"using"block
希望本文所述对大家的C#程序设计有所帮助。