将两个文件记录合并,每条记录占用一行,要求删除重复行,合并行并对其排序。
摘要:
public class DictHelper { public static void SortDict(string sourceFilePath, string destFilePath) { if (!File.Exists(destFilePath)) { File.Create(destFilePath).Close(); } List<string> destList = new List<string>(); ... 阅读全文
posted @ 2012-10-24 21:28 笑东风 阅读(1117) 评论(0) 推荐(0)
浙公网安备 33010602011771号