2011年11月25日
摘要: 对记事本的读取,这个都很常见,也并不难。如下: /// <summary> /// 读取记事本 /// </summary> /// <param name="path"></param> /// <returns></returns> private string Txt2Text(string path) { StreamReader srFile = null; string msg = string.Empty; try { srFile = new StreamReader(path, Sys 阅读全文
posted @ 2011-11-25 09:55 luolei05 阅读(810) 评论(0) 推荐(0) 编辑