当前位置: 首页 > 知识库问答 >
问题:

比较两个文本文件,只保存第二个文件的差异

方风华
2023-03-14

有人请建议我一个工具来比较两个文本文件和保存第二个文本文件的差异。

共有1个答案

危裕
2023-03-14

希望这能有所帮助

IEnumerable<string> strfile1 = File.ReadLines("file");
IEnumerable<string> strfile2 = File.ReadLines("file");
IEnumerable<string> strfile3 = strfile2.Except(strfile1);
 类似资料: