之前都是用StreamReader.ReadLine方法逐行读取文件,自从.NET4有了File.ReadLines这一利器,就再也不用为大文件发愁了. File.ReadLines在整个文件读取到内存之前就提供 IEnumerator 对象供程序操作,且回传对象IEnumerator更易于操作.因此File类的ReadLines方法特别适合操作大型文件. var Fi = from line in File.ReadLines(openFileDialog1.FileName,Encoding…
using System; using System.Collections.Generic; using System.Linq; using System.Text; using FileHelpers; using FileHelpers.DataLink; namespace ConsoleApplication { [DelimitedRecord("\t")] public class LogInfo { [FieldConverter(ConverterKind.Date…
最近项目用到ini文件,读取ini文件,方法如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections.Specialized; using System.IO; using System.Runtime.InteropServices; using System.Windows.Forms; namespace test{ /…