本文介绍了C#文件比较并生成报告的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有两个c#文件file1和file2,里面有代码行。修改后我要修改文件2我想根据文件2中发生的差异生成报告。

我生成了报告,但我的问题是类似的file2行只出现一次.. ..





例如;



File1 - > KB200 ,KB400



File2 - > KB600,KB600,KB400,KB200,KB700



报告 - > ; KB600,KB700



我想报告像这样KB600,KB600,KB700

I have two c# files file1 and file2 with there are lines of code. I'm going to modify the file2 after modifying i want to Generate report based on what are the differences happened in file 2.
I generated report but my problem is similar lines of file2 appearing only once....


For Eg;

File1 ->KB200, KB400

File2 ->KB600 ,KB600 ,KB400 ,KB200 ,KB700

Report -> KB600 , KB700

I want Report like this KB600 , KB600 , KB700

推荐答案


这篇关于C#文件比较并生成报告的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-24 16:30