-4
添加或刪除這些文件,我使用C#兩個files.c之間進行比較,我可以看看它們是不同的或沒有,但功能數量我正在尋找一種方法來計算的函數(方法)的數量已經增加或刪除或修改到這些file.c比較兩個file.c之間和計數的已使用C#
這是我的代碼,到現在爲止
private bool FileCompare(string file1, string file2)
{
int file1byte;
int file2byte;
FileStream fs1;
FileStream fs2;
// Determine if the same file was referenced two times.
if (file1 == file2)
{
// Return true to indicate that the files are the same.
return true;
}
// Open the two files.
fs1 = new FileStream(file1, FileMode.Open, FileAccess.Read);
fs2 = new FileStream(file2, FileMode.Open, FileAccess.Read);
// Check the file sizes. If they are not the same, the files
// are not the same.
if (fs1.Length != fs2.Length)
{
// Close the file
fs1.Close();
fs2.Close();
// Return false to indicate files are different
return false;
}
任何人有任何sugggetion? 感謝您的幫助。
所以你想從我們爲你寫了'C'解析器? –
@ Selman22 - 或建議一個'C'解析器 – Jonny
答案中有用的東西? –