摘要:
对记事本的读取,这个都很常见,也并不难。如下: /// <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 阅读全文